提交 | 用户 | age
|
058fdb
|
1 |
package com.hz.phis.dt.dcp; |
L |
2 |
|
|
3 |
import com.hz.phis.dt.BaseDt; |
|
4 |
import lombok.Data; |
|
5 |
|
|
6 |
@Data |
|
7 |
public class UserTagInfoDt extends BaseDt { |
|
8 |
/**是否自定义:0否1是*/ |
|
9 |
private Integer isCustom; |
|
10 |
/**phisId*/ |
|
11 |
private String phisId; |
|
12 |
/**phisLabelInfoId*/ |
|
13 |
private String phisLabelInfoId; |
|
14 |
/**phisLabelTypeId*/ |
|
15 |
private String phisLabelTypeId; |
|
16 |
/**平台*/ |
|
17 |
private String platformCode; |
|
18 |
/**门店id*/ |
|
19 |
private String shopId; |
|
20 |
/**门店名称*/ |
|
21 |
private String shopName; |
|
22 |
/**来源操作的平台名称*/ |
|
23 |
private String sourceType; |
|
24 |
/**标签颜色*/ |
|
25 |
private String tagColor; |
|
26 |
/**标签名称*/ |
|
27 |
private String tagName; |
|
28 |
/**标签编号*/ |
|
29 |
private String tagNo; |
|
30 |
/***/ |
|
31 |
private String tagRangeValue; |
|
32 |
/**标签类型*/ |
|
33 |
private Integer tagType; |
|
34 |
/**标签值*/ |
|
35 |
private String tagValue; |
|
36 |
/**分类名称*/ |
|
37 |
private String typeName; |
|
38 |
/**分类编号*/ |
|
39 |
private String typeNo; |
|
40 |
/**用户id*/ |
|
41 |
private String userId; |
|
42 |
/**用户名称*/ |
|
43 |
private String userName; |
|
44 |
/**用户编号*/ |
|
45 |
private String userNo; |
|
46 |
} |