Commit 556ce496 by zhangxingmin

push

parent 1f11a045
......@@ -257,6 +257,8 @@ public class ApiSalaryServiceImpl implements ApiSalaryService {
apiSalaryBatchAddDTOList.forEach(dto -> {
Salary salary = new Salary();
BeanUtils.copyProperties(dto,salary);
//发放编号
salary.setSalaryNo(CodeGenerator.generate10Code("SN"));
salary.setSalaryBizId(RandomStringGenerator.generateBizId16(CommonEnum.UID_TYPE_SALARY.getCode()));
salary.setStatus(SalaryStatusEnum.DTJ.getItemValue());
List<SalaryRemittance> salaryRemittanceList = new ArrayList<>();
......
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