Commit b8aff9a5 authored by huyuchen's avatar huyuchen

huych-入职登记提交

parent df9f2b32
......@@ -388,13 +388,14 @@ public class EmployeeRegistrationPreServiceImpl extends ServiceImpl<EmployeeRegi
@Override
public R batchSendMessage(List<SendMessageUpdateVo> voList,String type) {
//获取短信待发放和信息待填写的数据
RegistParamVo paramVo = new RegistParamVo();
List<RegistParamVo> params = new ArrayList<>();
List<String> phones = new ArrayList<>();
EmployeeRegistrationPre updatePre;
AliSmsResult res;
if (CommonConstants.ONE_STRING.equals(type)) {
for(SendMessageUpdateVo updateVo:voList) {
RegistParamVo paramVo = new RegistParamVo();
List<RegistParamVo> params = new ArrayList<>();
List<String> phones = new ArrayList<>();
EmployeeRegistrationPre updatePre;
AliSmsResult res;
updatePre = baseMapper.selectOne(Wrappers.<EmployeeRegistrationPre>query()
.lambda().eq(EmployeeRegistrationPre::getId, updateVo.getId())
.in(EmployeeRegistrationPre::getProcessStatus, CommonConstants.processStatus)
......@@ -433,6 +434,11 @@ public class EmployeeRegistrationPreServiceImpl extends ServiceImpl<EmployeeRegi
} else {
TEmployeeInfo info;
for(SendMessageUpdateVo updateVo:voList) {
RegistParamVo paramVo = new RegistParamVo();
List<RegistParamVo> params = new ArrayList<>();
List<String> phones = new ArrayList<>();
EmployeeRegistrationPre updatePre;
AliSmsResult res;
info = employeeInfoMapper.selectById(updateVo.getId());
if (Common.isNotNull(info)) {
paramVo.setName(info.getEmpName());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment