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
package com.nuvole.util.sc.client.domain;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * 客群返回值(客管系统)
 *
 * @Author: lc
 * @Date: 2019/11/2 12:41
 */
@Data
@ApiModel(value = "客群返回值(客管系统)")
public class ScGroup {
 
    @ApiModelProperty(value = "客群名称")
    private String label_name;
 
    @ApiModelProperty(value = "客群编号")
    private String label_no;
 
    @ApiModelProperty(value = "上级标签")
    private String parent_label;
}