|
@@ -226,6 +226,7 @@ public class UserLogic {
|
|
|
String userType = (String) row.get(3);
|
|
|
String websitName = (String) row.get(4);
|
|
|
String bankAccount = (String) row.get(5);
|
|
|
+ String workerNumber = (String) row.get(6);
|
|
|
if (StringUtils.isAnyBlank(name, mobile, userType)) {
|
|
|
throw new RemoteServiceException(errPrefix + "黄色区域为必填项");
|
|
|
}
|
|
@@ -263,6 +264,7 @@ public class UserLogic {
|
|
|
userWait.setCompanyWechatId(adminUser.getCompanyWechatId());
|
|
|
userWait.setCompanyWechatName(adminUser.getCompanyName());
|
|
|
userWait.setBankAccount(bankAccount);
|
|
|
+ userWait.setWorkerNumber(workerNumber);
|
|
|
userWaits.add(userWait);
|
|
|
}
|
|
|
userWaitService.saveBatch(userWaits);
|