fs-danaus
2024-08-09 7204e3dff0490732e861ccd1338e3e3c31d768c6
提交 | 用户 | age
7204e3 1 package com.yc.crm.base.entity;
f51ff9 2
X 3 import lombok.Data;
4
5 /**
6  * @BelongsProject: eCoWorksV3
7  * @BelongsPackage: com.yc.crm.entity
8  * @author: xinyb
9  * @CreateTime: 2024-07-27  09:15
10  * @Description:
11  */
12 @Data
7204e3 13 public class T482115Entity {
f51ff9 14     private String companyId;
X 15     private String companyName;
16     private Integer tagId;// [primary key]
17     private String tagName;
18     private String userCode;
19     private String userName;
20     private Integer sortId;
21     private String createTime;
22     private String updateTime;
23     private String tagDesc;// [note:'标签备注']
24     private boolean systemFlag;// [note:'是否为系统标签']
25     private String tagColor;
26     private Integer tagType; //[note:'标签类型 0:邮件 1:其他(线索,客户,商机)']
27     private Integer docVersion;
28
29 }