| package com.doumee.dao.business.dto; | 
|   | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| import java.util.List; | 
|   | 
| @Data | 
| public class MemberQueryDTO { | 
|   | 
|     @ApiModelProperty(value = "员工名称") | 
|     private String name; | 
|   | 
|     @ApiModelProperty(value = "身份证号码") | 
|     private String idCard; | 
|   | 
|     @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 = "过滤保单主键下数据" ,notes = "加保申请") | 
|     private Integer notInInsuranceApplyId; | 
|   | 
|     @ApiModelProperty(value = "保单主键下数据" , notes = "减保申请/换厂申请") | 
|     private Integer insuranceApplyId; | 
|   | 
|     @ApiModelProperty(value = "企业主键") | 
|     private Integer companyId; | 
|   | 
| } |