|
|
@ -88,9 +88,9 @@ public class UserAccountController {
|
|
|
|
public void excel(HttpServletResponse response, @Validated @RequestBody ListUAParam param) throws IOException {
|
|
|
|
public void excel(HttpServletResponse response, @Validated @RequestBody ListUAParam param) throws IOException {
|
|
|
|
//这是表头及格式
|
|
|
|
//这是表头及格式
|
|
|
|
String[][] array = {
|
|
|
|
String[][] array = {
|
|
|
|
{"申请人", "部门", "第三方平台", "昵称", "手机号", "截图"},
|
|
|
|
{"申请人", "部门", "第三方平台","账号", "昵称", "手机号", "截图"},
|
|
|
|
{"userName", "departmentName", "platform", "name", "tel", "validImg"},
|
|
|
|
{"userName", "departmentName", "platform","account", "name", "tel", "validImg"},
|
|
|
|
{"String", "String", "String", "String", "String", "String"}
|
|
|
|
{"String", "String", "String", "String", "String", "String", "String"}
|
|
|
|
};
|
|
|
|
};
|
|
|
|
QueryWrapper<UserAccount> qw = new QueryWrapper<>();
|
|
|
|
QueryWrapper<UserAccount> qw = new QueryWrapper<>();
|
|
|
|
qw.eq(param.getStatus() != null, "t1.status", param.getStatus());
|
|
|
|
qw.eq(param.getStatus() != null, "t1.status", param.getStatus());
|
|
|
|