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
|
|
}
|