package com.iailab.module.model.mcs.sche.entity;
|
|
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 lombok.Data;
|
|
import java.io.Serializable;
|
|
/**
|
* @author PanZhibao
|
* @Description
|
* @createTime 2024年09月06日
|
*/
|
@Data
|
@TableName("t_st_schedule_model_setting")
|
public class StScheduleModelSettingEntity implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键
|
*/
|
@TableId(value = "id",type = IdType.INPUT)
|
private String id;
|
|
/**
|
* 模型ID
|
*/
|
private String modelid;
|
|
/**
|
* 键
|
*/
|
@TableField(value = "`key`")
|
private String key;
|
|
/**
|
* 值
|
*/
|
@TableField(value = "`value`")
|
private String value;
|
|
/**
|
* 值类型
|
*/
|
private String valuetype;
|
|
/**
|
* 名称
|
*/
|
private String name;
|
|
/**
|
* 排序
|
*/
|
private Integer sort;
|
}
|