提交 | 用户 | 时间
|
6eeac9
|
1 |
package com.iailab.module.model.mcs.sche.entity; |
D |
2 |
|
|
3 |
import com.baomidou.mybatisplus.annotation.TableId; |
|
4 |
import com.baomidou.mybatisplus.annotation.TableName; |
|
5 |
import com.iailab.framework.mybatis.core.dataobject.BaseDO; |
|
6 |
import lombok.Data; |
|
7 |
|
|
8 |
import java.io.Serializable; |
|
9 |
|
|
10 |
/** |
|
11 |
* @description: 调度模型下发配置 |
|
12 |
* @author: dyk |
|
13 |
* @date: 2024/12/30 17:21 |
|
14 |
**/ |
|
15 |
@Data |
|
16 |
@TableName("t_st_schedule_model_out") |
|
17 |
public class StScheduleModelOutEntity implements Serializable { |
|
18 |
|
|
19 |
/** |
|
20 |
* id |
|
21 |
*/ |
|
22 |
@TableId |
|
23 |
private String id; |
|
24 |
|
|
25 |
/** |
|
26 |
* 模型id |
|
27 |
*/ |
|
28 |
private String modelId; |
|
29 |
|
|
30 |
/** |
|
31 |
* key |
|
32 |
*/ |
|
33 |
private String resultKey; |
|
34 |
|
|
35 |
/** |
|
36 |
* 数据类型 |
|
37 |
*/ |
|
38 |
private String resultType; |
|
39 |
|
|
40 |
/** |
|
41 |
* 角标1 |
|
42 |
*/ |
|
43 |
private Integer resultPort; |
|
44 |
|
|
45 |
/** |
|
46 |
* 角标2 |
|
47 |
*/ |
|
48 |
private Integer resultIndex; |
|
49 |
|
|
50 |
/** |
|
51 |
* 是否下发 |
|
52 |
*/ |
|
53 |
private Integer isWrite; |
|
54 |
|
|
55 |
/** |
|
56 |
* 下发的点位 |
|
57 |
*/ |
|
58 |
private String pointNo; |
|
59 |
|
|
60 |
/** |
|
61 |
* 排序 |
|
62 |
*/ |
|
63 |
private Integer sort; |
|
64 |
|
|
65 |
/** |
|
66 |
* 无扰切换点位 |
|
67 |
*/ |
|
68 |
private String disturbancePointNo; |
|
69 |
} |