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
| package com.agentdriving.driver.modular.system.model;
|
| import com.baomidou.mybatisplus.annotations.TableField;
| import com.baomidou.mybatisplus.annotations.TableId;
| import com.baomidou.mybatisplus.annotations.TableName;
| import com.baomidou.mybatisplus.enums.IdType;
| import lombok.Data;
|
| import java.util.Date;
|
| /**
| * 系统图片
| * @author pzb
| * @Date 2023/2/3 10:36
| */
| @Data
| @TableName("t_img")
| public class Img {
| /**
| * 主键
| */
| @TableId(value = "id", type = IdType.AUTO)
| @TableField("id")
| private Integer id;
| /**
| * 数据类型(1=启动页)
| */
| @TableField("type")
| private Integer type;
| /**
| * 图片地址
| */
| @TableField("img")
| private String img;
| /**
| * 添加时间
| */
| @TableField("createTime")
| private Date createTime;
| }
|
|