| | |
| | | package com.ruoyi.basic.vo; |
| | | |
| | | import com.ruoyi.basic.dto.CustomerContactDto; |
| | | import com.ruoyi.basic.dto.CustomerFollowUpDto; |
| | | import com.ruoyi.basic.pojo.Customer; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | |
| | | |
| | | @Data |
| | | public class CustomerVo extends Customer { |
| | | @ApiModelProperty(value = "跟进记录") |
| | | @ApiModelProperty(value = "璺熻繘璁板綍") |
| | | private List<CustomerFollowUpDto> followUpList; |
| | | |
| | | @ApiModelProperty(value = "鑱旂郴浜轰俊鎭?") |
| | | private List<CustomerContactDto> contactList; |
| | | |
| | | private String usageUserName; |
| | | |
| | | private String togetherUserNames; |
| | | |
| | | /** |
| | | * 共享用户ID列表 |
| | | * 鍏变韩鐢ㄦ埛ID鍒楄〃 |
| | | */ |
| | | private List<Long> userIds; |
| | | |
| | | /** |
| | | * 共享用户ID字符串(SQL查询返回,用于转换为List) |
| | | * 鍏变韩鐢ㄦ埛ID瀛楃涓诧紙SQL鏌ヨ杩斿洖锛岀敤浜庤浆鎹负List锛? |
| | | */ |
| | | private String userIdsStr; |
| | | } |