InsureDto.java 1.11 KB
Newer Older
翁国栋 committed
1 2 3 4 5 6
package cn.timer.api.dto.insure;

import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
翁国栋 committed
7
import org.springframework.web.multipart.MultipartFile;
翁国栋 committed
8

翁国栋 committed
9 10
import java.util.List;

翁国栋 committed
11 12 13 14 15 16 17 18 19 20 21

/**
 * @Description TODO
 * @Author wgd
 * @Date 2022/3/7 18:15
 */
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class InsureDto {
翁国栋 committed
22
    private String id;
翁国栋 committed
23
    private String orgCode;/*企业id*/
翁国栋 committed
24 25 26
    private String companyName;/*用工单位实际工作单位*/
    private String policyDateStart;
    private String policyDateEnd;
翁国栋 committed
27 28 29
    private Integer type;/*类型 1是新增 3是替换*/
    private String productId;
    private List<PlansDto> plans;
翁国栋 committed
30 31 32
    private String benefitBasicPlan;/*方案名称*/
    private String benefitOccupationCategory;
    private String tricycleFrameNumber;
翁国栋 committed
33
    private String[] oldIds;
翁国栋 committed
34 35
    private String[] userIds;
    private Double totalPrice;
翁国栋 committed
36
    private MultipartFile file;
37 38 39 40
    private Integer limit =0;/*代表是单独替换*/
    private String userName;
    private String idCardNo;
    private String reason;/*批改原因*/
翁国栋 committed
41

翁国栋 committed
42 43
//    private String
}