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;
|
}
|