图片告警 历史图片bug修改 图片查询流程优化
parent
8d84c257cc
commit
c7be6bcb69
@ -1 +1 @@
|
||||
org.springframework.boot.env.EnvironmentPostProcessor=com.shxy.xymanager_framework.config.MyEnvironmentPostProcessor
|
||||
#org.springframework.boot.env.EnvironmentPostProcessor=com.shxy.xymanager_framework.config.MyEnvironmentPostProcessor
|
||||
|
@ -0,0 +1,44 @@
|
||||
package com.shxy.xymanager_common.dto;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.math.BigInteger;
|
||||
import java.util.Date;
|
||||
|
||||
@Data
|
||||
public class TerminalImgAlarmsDto implements Serializable {
|
||||
|
||||
private BigInteger id;
|
||||
|
||||
private Integer termId;
|
||||
|
||||
private Integer channelId;
|
||||
|
||||
private Integer presetId;
|
||||
|
||||
private BigInteger photoOrgId;
|
||||
|
||||
private BigInteger alarmTime;
|
||||
|
||||
private Integer label;
|
||||
|
||||
private String name;
|
||||
|
||||
private String enname;
|
||||
|
||||
private Float prob;
|
||||
|
||||
private Float x;
|
||||
|
||||
private Float y;
|
||||
|
||||
private Float width;
|
||||
|
||||
private Float height;
|
||||
|
||||
private Integer isread;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
}
|
@ -0,0 +1,21 @@
|
||||
package com.shxy.xymanager_common.vo;
|
||||
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import org.springframework.validation.annotation.Validated;
|
||||
|
||||
import javax.validation.constraints.Min;
|
||||
import javax.validation.constraints.NotNull;
|
||||
import java.math.BigInteger;
|
||||
import java.util.Date;
|
||||
|
||||
@Data
|
||||
@Validated
|
||||
@ApiModel(value = "装置告警编号对象", description = "装置告警编号对象")
|
||||
public class TerminalAlarmIdVo {
|
||||
|
||||
@ApiModelProperty(value = "告警编号", example = "123455")
|
||||
private BigInteger id;
|
||||
|
||||
}
|
@ -0,0 +1,41 @@
|
||||
package com.shxy.xymanager_common.vo;
|
||||
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import org.springframework.validation.annotation.Validated;
|
||||
|
||||
import javax.validation.constraints.Min;
|
||||
import javax.validation.constraints.NotNull;
|
||||
import java.util.Date;
|
||||
|
||||
@Data
|
||||
@Validated
|
||||
@ApiModel(value = "装置报警查询对象", description = "装置报警查询对象描述")
|
||||
public class TerminalAlarmSelectVo {
|
||||
|
||||
@ApiModelProperty(value = "电压编号", example = "123455")
|
||||
private Integer dyid;
|
||||
|
||||
@ApiModelProperty(value = "装置编号", example = "123455")
|
||||
private Integer lineid;
|
||||
|
||||
@ApiModelProperty(value = "杆塔编号", example = "123455")
|
||||
private Integer towerid;
|
||||
|
||||
@NotNull(message = "查询时间不能缺少")
|
||||
@ApiModelProperty(value = "查询时间", example = "123455")
|
||||
private Date starttime;
|
||||
|
||||
@NotNull(message = "查询结束时间不能缺少")
|
||||
@ApiModelProperty(value = "查询结束时间", example = "123455")
|
||||
private Date endtime;
|
||||
|
||||
@Min(value = 1, message = "分页位置最小从1开始")
|
||||
@ApiModelProperty(value = "分页位置从1开始", required = true, example = "1")
|
||||
private int pageindex;
|
||||
|
||||
@Min(value = 1, message = "分页大小最小为1")
|
||||
@ApiModelProperty(value = "分页大小", required = true, example = "1")
|
||||
private int pagesize;
|
||||
}
|
Loading…
Reference in New Issue