办学质量监测教学评价系统
winkey
2025-04-07 0153f004f437fdeda4d3eb421114ab8e69059d69
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
package org.ruoyi.system.domain.vo;
 
import io.github.linpeilie.annotations.AutoMapper;
import lombok.Data;
import org.ruoyi.common.translation.annotation.Translation;
import org.ruoyi.common.translation.constant.TransConstant;
import org.ruoyi.system.domain.SysNotice;
 
import java.io.Serial;
import java.io.Serializable;
import java.util.Date;
 
 
 
/**
 * 通知公告视图对象 sys_notice
 *
 * @author Michelle.Chung
 */
@Data
@AutoMapper(target = SysNotice.class)
public class SysNoticeVo implements Serializable {
 
    @Serial
    private static final long serialVersionUID = 1L;
 
    /**
     * 公告ID
     */
    private Long noticeId;
 
    /**
     * 公告标题
     */
    private String noticeTitle;
 
    /**
     * 公告类型(1通知 2公告)
     */
    private String noticeType;
 
    /**
     * 公告内容
     */
    private String noticeContent;
 
    /**
     * 公告状态(0正常 1关闭)
     */
    private String status;
 
    /**
     * 备注
     */
    private String remark;
 
    /**
     * 创建者
     */
    private Long createBy;
 
    /**
     * 创建人名称
     */
    @Translation(type = TransConstant.USER_ID_TO_NAME, mapper = "createBy")
    private String createByName;
 
    /**
     * 创建时间
     */
    private Date createTime;
 
}