办学质量监测教学评价系统
ageerle
2025-04-21 69efc3261e6f6e4dca268fb2de9866d8f2a14952
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
package org.ruoyi.system.domain.vo;
 
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
import com.alibaba.excel.annotation.ExcelProperty;
import io.github.linpeilie.annotations.AutoMapper;
import lombok.Data;
import org.ruoyi.common.excel.annotation.ExcelDictFormat;
import org.ruoyi.common.excel.convert.ExcelDictConvert;
import org.ruoyi.system.domain.SysNoticeState;
 
import java.io.Serial;
import java.io.Serializable;
 
 
/**
 * 用户阅读状态视图对象 sys_notice_state
 *
 * @author Lion Li
 * @date 2024-05-11
 */
@Data
@ExcelIgnoreUnannotated
@AutoMapper(target = SysNoticeState.class)
public class SysNoticeStateVo implements Serializable {
 
    @Serial
    private static final long serialVersionUID = 1L;
 
    /**
     * ID
     */
    @ExcelProperty(value = "ID")
    private Long id;
 
    /**
     * 用户ID
     */
    @ExcelProperty(value = "用户ID")
    private Long userId;
 
    /**
     * 公告ID
     */
    @ExcelProperty(value = "公告ID")
    private Long noticeId;
 
    /**
     * 阅读状态(0未读 1已读)
     */
    @ExcelProperty(value = "阅读状态", converter = ExcelDictConvert.class)
    @ExcelDictFormat(readConverterExp = "0=未读,1=已读")
    private String readStatus;
 
    /**
     * 备注
     */
    @ExcelProperty(value = "备注")
    private String remark;
 
 
}