liriming
2024-12-03 97f3c16ac595493405e8cf76399dc703c088ef6f
提交 | 用户 | 时间
7fd198 1 package com.iailab.module.model.mcs.sche.entity;
2
3 import com.baomidou.mybatisplus.annotation.IdType;
4 import com.baomidou.mybatisplus.annotation.TableId;
5 import com.baomidou.mybatisplus.annotation.TableName;
bbc1ee 6 import com.iailab.framework.mybatis.core.dataobject.BaseDO;
7fd198 7 import lombok.Data;
8
9 import java.util.Date;
10
11 /**
12  * @author PanZhibao
13  * @date 2021年07月19日 16:43
14  */
15 @Data
bbc1ee 16 @TableName("t_st_schedule_scheme")
17 public class StScheduleSchemeEntity extends BaseDO {
7fd198 18
19     private static final long serialVersionUID = 1L;
20
21     /**
22      * 主键
23      */
bbc1ee 24     @TableId(value = "id", type = IdType.INPUT)
7fd198 25     private String id;
26
27     /**
bbc1ee 28      * 编号
7fd198 29      */
bbc1ee 30     private String code;
7fd198 31
32     /**
bbc1ee 33      * 名称
7fd198 34      */
bbc1ee 35     private String name;
7fd198 36
37     /**
bbc1ee 38      * 触发方式
7fd198 39      */
bbc1ee 40     private String triggerMethod;
41
42     /**
43      * 触发条件
44      */
45     private String triggerCondition;
46
47     /**
48      * 调整对象
49      */
50     private String scheduleObj;
51
52     /**
53      * 调整类型
54      */
55     private String scheduleType;
56
57     /**
58      * 调整策略
59      */
60     private String scheduleStrategy;
61
62     /**
63      * 调度模型
64      */
65     private String modelId;
7fd198 66
67     /**
68      * 调度时间
69      */
bbc1ee 70     private Date scheduleTime;
7fd198 71
72     /**
bbc1ee 73      * 状态(0正常 1停用)
7fd198 74      */
bbc1ee 75     private Integer status;
7fd198 76
77     /**
bbc1ee 78      * 备注
7fd198 79      */
bbc1ee 80     private String remark;
51c1c2 81
82     /**
83      * 项目ID
84      */
85     private String mpkprojectid;
7fd198 86 }