| | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | @Data |
| | | public class MemberQueryDTO { |
| | | |
| | | @ApiModelProperty(value = "模糊查询 手机号+身份证号码") |
| | | private String keywords; |
| | | |
| | | @ApiModelProperty(value = "员工名称") |
| | | private String name; |
| | | |
| | | @ApiModelProperty(value = "派遣單位名称") |
| | | private String duName; |
| | | |
| | | @ApiModelProperty(value = "身份证号码") |
| | | private String idCard; |
| | | |
| | | @ApiModelProperty(value = "身份证号码") |
| | | private String idcardNo; |
| | | |
| | | @ApiModelProperty(value = "派遣单位主键") |
| | | private Integer duId; |
| | | |
| | | @ApiModelProperty(value = "保险方案主键") |
| | | private Integer solutionsId; |
| | | |
| | | @ApiModelProperty(value = "保险状态:0=全部;1=保障中;2=不在保") |
| | | private Integer solutionsStatus; |
| | | |
| | | @ApiModelProperty(value = "需过滤数据集合") |
| | | private List<Integer> memberIds; |
| | | |
| | | @ApiModelProperty(value = "过滤保单主键下数据") |
| | | @ApiModelProperty(value = "过滤保单主键下数据" ,notes = "加保申请") |
| | | private Integer notInInsuranceApplyId; |
| | | |
| | | @ApiModelProperty(value = "保单主键下数据" , notes = "减保申请/换厂申请") |
| | | private Integer insuranceApplyId; |
| | | |
| | | @ApiModelProperty(value = "批单日期" , notes = "减保申请/换厂申请") |
| | | private Date validTime ; |
| | | |
| | | @ApiModelProperty(value = "企业主键") |
| | | private Integer companyId; |
| | | |
| | | @ApiModelProperty(value = "减保人员筛选") |
| | | private List<Integer> subtractMemberIds; |
| | | |
| | | |
| | | } |