2 天以前 684e4306a08feeae188070f264148e6765da8dcf
src/main/java/com/ruoyi/basic/pojo/Customer.java
@@ -1,6 +1,7 @@
package com.ruoyi.basic.pojo;
import java.io.Serializable;
import java.math.BigDecimal;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.util.Date;
@@ -129,4 +130,13 @@
    @Schema(description = "使用状态")
    private Long usageStatus;
    @Schema(description = "类型 0 私海客户 1 公海客户")
    private Integer type;
    @Schema(description = "是否被分配:0-未分配,1-已分配")
    private Integer isAssigned;
    @Schema(description = "信托基金(元)")
    @Excel(name = "信托基金")
    private BigDecimal trustFund;
}