2 天以前 684e4306a08feeae188070f264148e6765da8dcf
src/main/java/com/ruoyi/basic/vo/CustomerVo.java
@@ -5,10 +5,36 @@
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.math.BigDecimal;
import java.util.List;
@Data
public class CustomerVo extends Customer {
    @ApiModelProperty(value = "跟进记录")
    private List<CustomerFollowUpDto> followUpList;
    private String usageUserName;
    private String togetherUserNames;
    /**
     * 共享用户ID列表
     */
    private List<Long> userIds;
    /**
     * 共享用户ID字符串(SQL查询返回,用于转换为List)
     */
    private String userIdsStr;
    /**
     * 是否被销售模块引用:0-否,1-是
     */
    private Integer salesReferenceFlag;
    @ApiModelProperty(value = "该客户代储金额合计(所有类型=代储的销售台账合同金额累计)")
    private BigDecimal depositTotalAmount;
    @ApiModelProperty(value = "代储金额是否已超出信托基金")
    private Boolean exceedsTrustFund;
}