提交 | 用户 | 时间
|
a6de49
|
1 |
package com.iailab.module.mcs.entity; |
H |
2 |
|
|
3 |
import com.baomidou.mybatisplus.annotation.IdType; |
|
4 |
import com.baomidou.mybatisplus.annotation.TableId; |
|
5 |
import com.baomidou.mybatisplus.annotation.TableName; |
|
6 |
import lombok.Data; |
|
7 |
|
|
8 |
import java.io.Serializable; |
|
9 |
|
|
10 |
/** |
|
11 |
* 模型下发信息表 |
|
12 |
* |
|
13 |
* @author PanZhibao |
|
14 |
* @Description |
|
15 |
* @createTime 2023年08月02日 13:26:00 |
|
16 |
*/ |
|
17 |
@Data |
|
18 |
@TableName("t_st_model_out") |
|
19 |
public class StModelOutEntity implements Serializable { |
|
20 |
|
|
21 |
private static final long serialVersionUID = 1L; |
|
22 |
|
|
23 |
/** |
|
24 |
* id |
|
25 |
*/ |
|
26 |
@TableId(type = IdType.ASSIGN_UUID) |
|
27 |
private String id; |
|
28 |
|
|
29 |
/** |
|
30 |
* 模型ID |
|
31 |
*/ |
|
32 |
private String modelId; |
|
33 |
|
|
34 |
/** |
|
35 |
* 输出key |
|
36 |
*/ |
|
37 |
private String resultKey; |
|
38 |
|
|
39 |
/** |
|
40 |
* 是否下发 |
|
41 |
*/ |
|
42 |
private String isWrite; |
|
43 |
|
|
44 |
/** |
|
45 |
* 下发的点位 |
|
46 |
*/ |
|
47 |
private String pointNo; |
|
48 |
|
|
49 |
/** |
|
50 |
* 排序 |
|
51 |
*/ |
|
52 |
private Integer sort; |
|
53 |
|
|
54 |
/** |
|
55 |
* 无扰切换点位 |
|
56 |
*/ |
|
57 |
private String disturbancePointNo; |
|
58 |
} |