PolicyDto.java 1.01 KB
Newer Older
翁国栋 committed
1 2
package cn.timer.api.dto.insure;

翁国栋 committed
3
import cn.timer.api.utils.Page;
翁国栋 committed
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
import lombok.Data;

import java.util.Date;

/**
 * @Description TODO
 * @Author wgd
 * @Date 2022/3/14 11:01
 */
@Data
public class PolicyDto {
    private long id;
    private String name;
    private Integer zjType;
    private String zjNum;
    private String policyNo;
    private String status;
    private String schemeName;
    private String policyDateStart;
    private String policyDateEnd;
    private String createTime;
    private Integer type;
    private Integer totaPolicy;
    private Integer totalCompany;
    private Integer totalUser;
    private Double totalPremium;
    private Date updateTime;
    private String insuredName;
    private String benefitBasicPlan;
    private String price;
翁国栋 committed
34
    private String orgCode;
翁国栋 committed
35 36 37 38
    private Page page;
    private String policyFile;
    private String benefitOccupationCategory;
    private Integer userId;
翁国栋 committed
39
    private Integer insureStatus;
翁国栋 committed
40 41 42
    private String planId;
    private String categoryId;

翁国栋 committed
43
}