|
@@ -296,8 +296,21 @@ public class UserController extends AbstractApiController {
|
|
List<List<Object>> rows = new LinkedList<>();
|
|
List<List<Object>> rows = new LinkedList<>();
|
|
if (CollUtil.isNotEmpty(users)) {
|
|
if (CollUtil.isNotEmpty(users)) {
|
|
for (User temp : users) {
|
|
for (User temp : users) {
|
|
- List<Object> rowA = CollUtil.newArrayList(temp.getId()+"", temp.getUserNo(), temp.getInvitedCode(),temp.getNickname()
|
|
|
|
- ,temp.getName(),temp.getBank(),temp.getBankAccount(),temp.getBankAccountName(),temp.getPhoneNo(),temp.getVipLevel()+"",temp.getMemo(),temp.getHasWithdraw()+"",temp.getHasLogin()+"",temp.getHasOrder()+"", DateUtil.format(temp.getCreateTime(), "yyyy-MM-dd HH:mm:ss"));
|
|
|
|
|
|
+ List<Object> rowA = CollUtil.newArrayList(temp.getId()+"",
|
|
|
|
+ temp.getUserNo(),
|
|
|
|
+ temp.getInvitedCode(),
|
|
|
|
+ temp.getNickname()
|
|
|
|
+ ,temp.getName(),
|
|
|
|
+ temp.getBank(),
|
|
|
|
+ temp.getBankAccount(),
|
|
|
|
+ temp.getBankAccountName(),
|
|
|
|
+ temp.getPhoneNo(),
|
|
|
|
+ temp.getVipLevel()+"",
|
|
|
|
+ temp.getMemo(),
|
|
|
|
+ temp.getHasWithdraw()+"",
|
|
|
|
+ temp.getHasLogin()+"",
|
|
|
|
+ temp.getHasOrder()+"",
|
|
|
|
+ DateUtil.format(temp.getCreateTime(), "yyyy-MM-dd HH:mm:ss"));
|
|
rows.add(rowA);
|
|
rows.add(rowA);
|
|
}
|
|
}
|
|
}
|
|
}
|