huminmin
9 天以前 cf99945deda3cba4b0e634abb100847f5cc2529b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package com.ruoyi.basic.vo;
 
import com.ruoyi.basic.dto.CustomerFollowUpDto;
import com.ruoyi.basic.pojo.Customer;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
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;
}