gongchunyi
2026-08-25 a7ce82c1cff06afc1b3e1f5deb88b6dd6c00c236
src/main/java/com/ruoyi/basic/vo/CustomerVo.java
@@ -11,4 +11,23 @@
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;
}