feige
2025-04-29 fb7ca62d2854c82ac6e0a551bf921dabe6ee7bbc
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
package com.ruoyi.domain;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.common.annotation.Excel;
import lombok.Data;
 
import java.io.Serializable;
import java.util.Date;
 
@Data
@TableName("qrcode")
public class qrcode  implements Serializable {
 
    @TableId(value = "id", type = IdType.AUTO)
 
    private Integer id;
 
    @Excel(name = "姓名")
    private String name;
 
    @Excel(name = "标题")
    private String title;
 
    private String filePath;
    @Excel(name = "图片" ,height=55, cellType = Excel.ColumnType.IMAGE)
    private String codeS;
 
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date createTime;
    /**
     * 开始时间
     */
    @TableField(exist = false)
    private Date happenStartDeadTime;
 
    /**
     * 结束时间
     */
    @TableField(exist = false)
    private Date happenEndDeadTime;
}