xinyb
2024-09-19 18ffbca9acaccd5099a7a63652f52210f59a7e40
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
26
27
28
29
package com.yc.crm.base.entity;
 
import lombok.Data;
 
/**
 * @BelongsProject: eCoWorksV3
 * @BelongsPackage: com.yc.crm.entity
 * @author: xinyb
 * @CreateTime: 2024-07-27  09:15
 * @Description:
 */
@Data
public class T482115Entity {
    private String companyId;
    private String companyName;
    private Integer tagId;// [primary key]
    private String tagName;
    private String userCode;
    private String userName;
    private Integer sortId;
    private String createTime;
    private String updateTime;
    private String tagDesc;// [note:'标签备注']
    private boolean systemFlag;// [note:'是否为系统标签']
    private String tagColor;
    private Integer tagType; //[note:'标签类型 0:邮件 1:其他(线索,客户,商机)']
    private Integer docVersion;
 
}