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