zhubaomin
2024-11-14 a0e0f51ebbfdb6b3d6371eaa1b3b3fc8560dc9d7
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
package com.dy.pipIrrRemote.rtuUpgrage;
 
 
import com.dy.common.webUtil.QueryConditionVo;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.*;
 
@Data
@EqualsAndHashCode(callSuper = false)
@ToString(callSuper = true)
@NoArgsConstructor
@AllArgsConstructor
@Builder
@Schema(name = "监视升级情况查询条件")
public class QueryVo extends QueryConditionVo {
 
    @Schema(description = "控制器地址")
    public String rtuAddr ;
 
    @Schema(description = "状态")
    public Integer status ;//进行中 : 1    已结束 : 0
 
    @Schema(description = "结果")
    public Integer result ;//成功  :  1    失败  : 0
 
}