xuekang
2024-05-11 bac0878349a1db23e7b420ea164e22fb9db73a99
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
29
30
31
32
33
34
35
36
package com.nuvole.util.sc.client.domain;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * 会员信息返回类(客管系统)
 *
 * @Author: lc
 * @Date: 2019/7/11 17:50
 */
@Data
@ApiModel(value = "会员信息返回类(客管系统)")
public class ScClient {
 
    @ApiModelProperty(value = "客户等级")
    private String cust_lev;
 
    @ApiModelProperty(value = "标签客群(逗号分隔形式)")
    private String labelsstr;
 
    @ApiModelProperty(value = "客户经理编号")
    private String tlrno;
 
    @ApiModelProperty(value = "机构编号(对应会员表里的user_org_code)")
    private String inst_no;
 
    @ApiModelProperty(value = "客户姓名")
    private String cust_name;
 
    @ApiModelProperty(value = "手机号")
    private String tel;
 
 
}