liyong
2 天以前 277e9a57417df1a594c65edda1c6a7b3985aa2bc
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
package com.ruoyi.collaborativeApproval.pojo;
 
import com.baomidou.mybatisplus.annotation.*;
 
import java.io.Serializable;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Getter;
import lombok.Setter;
 
/**
 * <p>
 * 通知公告的公告类型维护
 * </p>
 *
 * @author 芯导软件(江苏)有限公司
 * @since 2026-01-13 09:57:56
 */
@Getter
@Setter
@TableName("notice_type")
@Schema(name = "NoticeType对象", description = "通知公告的公告类型维护")
public class NoticeType implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
    @Schema(description = "通知公告的公告类型")
    private String noticeType;
 
    @TableField(fill = FieldFill.INSERT)
    private Long tenantId;
    @Schema(description = "创建用户")
    @TableField(fill = FieldFill.INSERT)
    private Integer createUser;
 
    @TableField(fill = FieldFill.INSERT)
    private Long deptId;
 
}