huminmin
9 天以前 c383c8ca7053005ffa3ee58efd89956fbf52c9ea
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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;
}