限制个税扣缴名字个备注字符数量

This commit is contained in:
钱涛 2022-06-27 13:17:15 +08:00
parent 7f3cc0a82a
commit e7dc9e1a57
2 changed files with 10 additions and 5 deletions

View File

@ -12,10 +12,13 @@ import java.util.Date;
import java.util.List;
/**
* @Description: 工资单发放
* @Author: wangxiangzhong
* @Date: 2021-12-11 11:28
*/
* 工资单发放
* <p>Copyright: Copyright (c) 2022</p>
* <p>Company: 泛微软件</p>
*
* @author qiantao
* @version 1.0
**/
@Data
@Builder
@NoArgsConstructor
@ -26,6 +29,7 @@ public class SalarySendQueryParam extends BaseQueryParam {
@JsonIgnore
private List<String> salaryMonth;
private List<Date> salaryMonthDate;
private Collection<Long> salarySobIds;

View File

@ -28,7 +28,7 @@ public class TaxAgentSaveParam {
private Long id;
//名称
@DataCheck(require = true, message = "名称必填")
@DataCheck(require = true, max = 20, message = "名称必填且不超过20个字符")
private String name;
//管理员主键id
@ -38,5 +38,6 @@ public class TaxAgentSaveParam {
private String paymentAgency;
//备注
@DataCheck( max = 50, message = "备注不超过50个字符")
private String description;
}