1
zj
2025-10-13 1cf34bf75b4b6b091f0aea3d7f97f1c689e40fe5
ruoyi-system/src/main/java/com/ruoyi/system/domain/UserPolicy.java
@@ -23,8 +23,14 @@
    // 系统生成的用户ID
    private Integer userId;
    // 账号(唯一)
    private String account;
    // 保险产品ID
    private Integer productId;
    // 产品名称
    private String productName;
    // 保额
    private BigDecimal coverageAmount;
@@ -32,8 +38,11 @@
    // 保费
    private BigDecimal premium;
    // 保险期限(如:1年/终身)
    // 保险期限(如:1天/终身)
    private Integer term;
    //可领取天数
    private Integer numberDays;
    // 姓名
    private String name;
@@ -42,7 +51,7 @@
    private Gender gender;
    // 出生日期
    private Date birthDate;
    private LocalDate birthDate;
    // 职业
    private String occupation;
@@ -65,6 +74,8 @@
    // 保险结束日期
    private LocalDate endDate;
    // 领取失效日期
    private LocalDate insuranceBenefitExpiryDate;
    // 是否终身保险 0:是  1:否
    private Integer isLifelong ;
@@ -80,6 +91,18 @@
    //驳回信息
    private String message;
    //支付状态,0=拉取失败,1=待支付,2已支付,3超时/过期
    private Integer payStatus;
    //支付订单号
    private String orderNo;
    //支付失败原因getProduct
    private String payMsg;
    //支付方式  1 支付宝 2微信  3余额
    private Integer modePayment;
    // 性别枚举 M:男  F:女  OTHER:其他
    public enum Gender {
        M, F, OTHER