liurunyu
2024-11-22 057c40f6bf5fd348e7c1ebc176b8d59d6fabb38f
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
 
}