PolicyDto.java 1.34 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
import lombok.Data;

import java.util.Date;

/**
 * @Description TODO
 * @Author wgd
 * @Date 2022/3/14 11:01
 */
@Data
public class PolicyDto {
翁国栋 committed
15
    private Integer id;
翁国栋 committed
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
    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
    private String planId;
    private String categoryId;
翁国栋 committed
42
    private String productId;
翁国栋 committed
43 44
    private Integer policyPayType;
    private Integer payId;
翁国栋 committed
45 46
    private Integer policyId;
    private Integer applyType;
翁国栋 committed
47
    private String monthD;
翁国栋 committed
48
    private String userName;
翁国栋 committed
49
    private String companyName;
翁国栋 committed
50
    private boolean isAll = false;
翁国栋 committed
51
    private Integer productPlanId;
翁国栋 committed
52
    private String planName;
翁国栋 committed
53
}