潘志宝
2024-12-03 51c1c2c9fa28fb1765dd6e81c70b78566792aebe
提交 | 用户 | 时间
7fd198 1 package com.iailab.module.model.mcs.sche.entity;
2
3 import com.baomidou.mybatisplus.annotation.IdType;
056470 4 import com.baomidou.mybatisplus.annotation.TableField;
7fd198 5 import com.baomidou.mybatisplus.annotation.TableId;
6 import com.baomidou.mybatisplus.annotation.TableName;
7 import lombok.Data;
8
9 import java.io.Serializable;
10
11 /**
12  * @author PanZhibao
bbc1ee 13  * @Description
14  * @createTime 2024年09月06日
7fd198 15  */
16 @Data
bbc1ee 17 @TableName("t_st_schedule_model_setting")
18 public class StScheduleModelSettingEntity implements Serializable {
7fd198 19     private static final long serialVersionUID = 1L;
20
21     /**
22      * 主键
23      */
24     @TableId(value = "id",type = IdType.INPUT)
25     private String id;
26
27     /**
28      * 模型ID
29      */
30     private String modelid;
31
32     /**
33      * 键
34      */
056470 35     @TableField(value = "`key`")
7fd198 36     private String key;
37
38     /**
39      * 值
40      */
056470 41     @TableField(value = "`value`")
7fd198 42     private String value;
43
44     /**
45      * 值类型
46      */
47     private String valuetype;
48
49     /**
50      * 名称
51      */
52     private String name;
bbc1ee 53
54     /**
55      * 排序
56      */
57     private Integer sort;
58 }