This commit is contained in:
钱涛 2022-05-26 18:16:48 +08:00
parent f6eb69e62a
commit b5d6adfbde
2 changed files with 7 additions and 0 deletions

View File

@ -54,6 +54,7 @@ public class SalarySobBO {
.updateTime(now)
.deleteType(NumberUtils.INTEGER_ZERO)
.tenantKey(SalaryDefaultTenantConstant.DEFAULT_TENANT_KEY)
.taxAgentId(saveParam.getTaxAgentId())
.build();
}

View File

@ -33,6 +33,12 @@ public class SalarySobBasicSaveParam {
@DataCheck(require = true, max = 40, message = "名称不允许为空且不能超过40个字符长度")
private String name;
/**
* 个税扣缴义务人的主键id
*/
@DataCheck(require = true, message = "个税扣缴义务人的主键id不允许为空")
private Long taxAgentId;
/**
* 薪资类型不允许为空
*