zxl
2026-03-25 8819762ad58f77e606431fca4072c19e542e6055
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
package com.tievd.jyz.entity;
 
import com.baomidou.mybatisplus.annotation.*;
import com.baomidou.mybatisplus.extension.activerecord.Model;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.experimental.Accessors;
 
import java.io.Serializable;
 
/**
 * <p>
 *
 * </p>
 *
 * @author
 * @since 2023-02-24
 */
@Data
@Accessors(chain = true)
@TableName("t_sys_info")
@Schema(name = "SysInfo", description = "")
public class SysInfo extends Model<SysInfo> {
 
    private static final long serialVersionUID = 1L;
 
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
    @Schema(description = "系统名称")
    @TableField("system_name")
    private String systemName;
 
    @Schema(description = "运营大屏名称")
    @TableField("operation_view_name")
    private String operationViewName;
 
    @Schema(description = "告警大屏名称")
    @TableField("task_view_name")
    private String taskViewName;
 
    @Schema(description = "logo")
    @TableField(value = "logo_path", updateStrategy = FieldStrategy.IGNORED)
    private String logoPath;
 
    @Schema(description = "背景图")
    @TableField("background")
    private String background;
    
    @Schema(description = "大屏背景图")
    @TableField("big_data_path")
    private String bigDataPath;
 
    @Override
    public Serializable pkVal() {
        return this.id;
    }
}