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;
|
}
|
}
|