package com.hz.phis.dt.dcp;
|
|
import com.hz.phis.dt.BaseDt;
|
import lombok.Data;
|
|
@Data
|
public class UserTagInfoDt extends BaseDt {
|
/**是否自定义:0否1是*/
|
private Integer isCustom;
|
/**phisId*/
|
private String phisId;
|
/**phisLabelInfoId*/
|
private String phisLabelInfoId;
|
/**phisLabelTypeId*/
|
private String phisLabelTypeId;
|
/**平台*/
|
private String platformCode;
|
/**门店id*/
|
private String shopId;
|
/**门店名称*/
|
private String shopName;
|
/**来源操作的平台名称*/
|
private String sourceType;
|
/**标签颜色*/
|
private String tagColor;
|
/**标签名称*/
|
private String tagName;
|
/**标签编号*/
|
private String tagNo;
|
/***/
|
private String tagRangeValue;
|
/**标签类型*/
|
private Integer tagType;
|
/**标签值*/
|
private String tagValue;
|
/**分类名称*/
|
private String typeName;
|
/**分类编号*/
|
private String typeNo;
|
/**用户id*/
|
private String userId;
|
/**用户名称*/
|
private String userName;
|
/**用户编号*/
|
private String userNo;
|
}
|