修改全局参数和告警参数
parent
09c8cad166
commit
d7820a3ec1
@ -0,0 +1,16 @@
|
||||
package com.shxy.xymanager_common.dto;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.math.BigInteger;
|
||||
import java.util.List;
|
||||
|
||||
@Data
|
||||
public class LastPicTimeDto implements Serializable {
|
||||
|
||||
private BigInteger photoTime;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
}
|
@ -0,0 +1,23 @@
|
||||
package com.shxy.xymanager_common.model;
|
||||
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* 全局参数对象
|
||||
*/
|
||||
@Data
|
||||
@ApiModel(value = "全局参数对象", description = "全局参数对象")
|
||||
public class GlobalParamsModel implements Serializable {
|
||||
|
||||
@ApiModelProperty(value = "图像标志", example = "123456")
|
||||
private Integer imgMark;
|
||||
|
||||
@ApiModelProperty(value = "告警通道", example = "123456")
|
||||
private Integer alarmChannel;
|
||||
|
||||
|
||||
}
|
Loading…
Reference in New Issue