k94314517
2025-04-11 d866f110ae6534eeb1caa35e1ea0d5b9154bd6af
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
package com.doumee.dao.business.model;
 
import com.doumee.core.annotation.excel.ExcelExportColumn;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import com.fasterxml.jackson.annotation.JsonFormat;
import java.util.Date;
 
/**
 * 系统消息信息表
 * @author 江蹄蹄
 * @since 2025/04/02 17:49
 */
@Data
@ApiModel("系统消息信息表")
@TableName("`notices`")
public class Notices {
 
    @TableId(type = IdType.AUTO)
    @ApiModelProperty(value = "主键", example = "1")
    @ExcelExportColumn(name="主键")
    private Integer id;
 
    @ApiModelProperty(value = "创建人编码", example = "1")
    @ExcelExportColumn(name="创建人编码")
    private Integer creator;
 
    @ApiModelProperty(value = "创建时间")
    @ExcelExportColumn(name="创建时间")
 
    private Date createDate;
 
    @ApiModelProperty(value = "更新人编码", example = "1")
    @ExcelExportColumn(name="更新人编码")
    private Integer editor;
 
    @ApiModelProperty(value = "更新时间")
    @ExcelExportColumn(name="更新时间")
 
    private Date editDate;
 
    @ApiModelProperty(value = "是否删除0否 1是", example = "1")
    @ExcelExportColumn(name="是否删除0否 1是")
    private Integer isdeleted;
 
    @ApiModelProperty(value = "备注")
    @ExcelExportColumn(name="备注")
    private String remark;
 
    @ApiModelProperty(value = "标题")
    @ExcelExportColumn(name="标题")
    private String title;
 
    @ApiModelProperty(value = "简介")
    @ExcelExportColumn(name="简介")
    private String info;
 
    @ApiModelProperty(value = "内容")
    @ExcelExportColumn(name="内容")
    private String content;
 
    @ApiModelProperty(value = "关联对象编码", example = "1")
    @ExcelExportColumn(name="关联对象编码")
    private Integer objId;
 
    @ApiModelProperty(value = "关联对象类型 0工单")
    @ExcelExportColumn(name="关联对象类型 0工单")
    private String objType;
 
    @ApiModelProperty(value = "关联对象名称")
    @ExcelExportColumn(name="关联对象名称")
    private String objName;
 
    @ApiModelProperty(value = "类型 0工单上报 1抄送 2转交")
    private String type;
 
    @ApiModelProperty(value = "用户企微主键")
    @ExcelExportColumn(name="关联参数1")
    private String param1;
 
    @ApiModelProperty(value = "关联参数2")
    @ExcelExportColumn(name="关联参数2")
    private String param2;
 
    @ApiModelProperty(value = "关联参数3")
    @ExcelExportColumn(name="关联参数3")
    private String param3;
 
    @ApiModelProperty(value = "关联参数4")
    @ExcelExportColumn(name="关联参数4")
    private String param4;
 
    @ApiModelProperty(value = "关联参数5")
    @ExcelExportColumn(name="关联参数5")
    private String param5;
 
    @ApiModelProperty(value = "关联用户姓名")
    @ExcelExportColumn(name="关联用户姓名")
    private String memberName;
 
    @ApiModelProperty(value = "关联用户企微编码")
    @ExcelExportColumn(name="关联用户企微编码")
    private String qwId;
 
    @ApiModelProperty(value = "关联用户编码(关联member)", example = "1")
    @ExcelExportColumn(name="关联用户编码(关联member)")
    private Integer memberId;
 
    @ApiModelProperty(value = "关联企业组织编码(关联company)", example = "1")
    @ExcelExportColumn(name="关联企业组织编码(关联company)")
    private Integer companyId;
 
    @ApiModelProperty(value = "状态 0正常 1已关闭", example = "1")
    @ExcelExportColumn(name="状态 0正常 1已关闭")
    private Integer status;
 
    @ApiModelProperty(value = "是否抄送 0不是 1是", example = "1")
    @ExcelExportColumn(name="是否抄送 0不是 1是")
    private Integer sendacopy;
 
    @ApiModelProperty(value = "是否已读 0未读 1已读", example = "1")
    @ExcelExportColumn(name="是否已读 0未读 1已读")
    private Integer readed;
 
}