1
zj
2025-10-11 2c7b7986f347961adec433e378a1f82434c7150e
ruoyi-system/src/main/java/com/ruoyi/system/domain/UserPolicy.java
@@ -38,8 +38,11 @@
    // 保费
    private BigDecimal premium;
    // 保险期限(如:1年/终身)
    // 保险期限(如:1天/终身)
    private Integer term;
    //可领取天数
    private Integer numberDays;
    // 姓名
    private String name;
@@ -71,6 +74,8 @@
    // 保险结束日期
    private LocalDate endDate;
    // 领取失效日期
    private LocalDate insuranceBenefitExpiryDate;
    // 是否终身保险 0:是  1:否
    private Integer isLifelong ;
@@ -86,6 +91,15 @@
    //驳回信息
    private String message;
    //支付状态,0=拉取失败,1=待支付,2已支付,3超时/过期
    private Integer payStatus;
    //支付订单号
    private String orderNo;
    //支付失败原因
    private String payMsg;
    // 性别枚举 M:男  F:女  OTHER:其他
    public enum Gender {
        M, F, OTHER