提交 | 用户 | 时间
|
6eeac9
|
1 |
package com.iailab.module.model.api.mcs.dto; |
D |
2 |
|
|
3 |
import io.swagger.v3.oas.annotations.media.Schema; |
|
4 |
import lombok.Data; |
|
5 |
|
|
6 |
import java.io.Serializable; |
|
7 |
|
|
8 |
@Schema(description = "RPC 模型 - 下发配置 DTO") |
|
9 |
@Data |
|
10 |
public class StScheduleModelOutDTO implements Serializable { |
|
11 |
private static final long serialVersionUID = 1L; |
|
12 |
|
|
13 |
/** |
|
14 |
* id |
|
15 |
*/ |
|
16 |
private String id; |
|
17 |
|
|
18 |
/** |
|
19 |
* 模型id |
|
20 |
*/ |
|
21 |
private String modelId; |
|
22 |
|
|
23 |
/** |
|
24 |
* key |
|
25 |
*/ |
|
26 |
private String resultKey; |
|
27 |
|
|
28 |
/** |
|
29 |
* 数据类型 |
|
30 |
*/ |
|
31 |
private String resultType; |
|
32 |
|
|
33 |
/** |
|
34 |
* resultPort |
|
35 |
*/ |
|
36 |
private Integer resultPort; |
|
37 |
|
|
38 |
/** |
|
39 |
* resultIndex |
|
40 |
*/ |
|
41 |
private Integer resultIndex; |
|
42 |
|
|
43 |
/** |
|
44 |
* 是否下发 |
|
45 |
*/ |
|
46 |
private Integer isWrite; |
|
47 |
|
|
48 |
/** |
|
49 |
* 下发的点位 |
|
50 |
*/ |
|
51 |
private String pointNo; |
|
52 |
|
|
53 |
/** |
|
54 |
* 排序 |
|
55 |
*/ |
|
56 |
private Integer sort; |
|
57 |
|
|
58 |
/** |
|
59 |
* 无扰切换点位 |
|
60 |
*/ |
|
61 |
private String disturbancePointNo; |
|
62 |
} |