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
| package com.stylefeng.guns.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;
|
| /**
| * @author zhibing.pu
| * @Date 2025/2/19 14:13
| */
| @Data
| @TableName("t_icon")
| public class Icon {
| /**
| * 主键
| */
| @TableId(value = "id", type = IdType.AUTO)
| private Integer icon;
| /**
| * 类型(1=离线,2=异常,3=未返回图片)
| */
| @TableField("type")
| private Integer type;
| /**
| * 图片地址
| */
| @TableField("url")
| private String url;
| }
|
|