Merge branch 'master' of https://gitee.com/xinyingpower/xymanagerbackend
Conflicts: xymanager_service/src/main/java/com/shxy/xymanager_service/impl/TerminalPhotoServiceImpl.javajni
commit
b4db61f241
@ -0,0 +1,21 @@
|
||||
package com.shxy.xymanager_common.model;
|
||||
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 所有杆塔列表
|
||||
*/
|
||||
@Data
|
||||
@ApiModel(value = "Cma返回信息", description = "Cma返回信息")
|
||||
public class CmaBackModel implements Serializable {
|
||||
|
||||
@ApiModelProperty(value = "请求ID", example = "1233")
|
||||
private Integer requestId;
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,21 @@
|
||||
package com.shxy.xymanager_common.model;
|
||||
|
||||
import cn.hutool.core.date.DateTime;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* 装置状态获取对象
|
||||
*/
|
||||
@Data
|
||||
@ApiModel(value = "装置状态获取对象", description = "装置状态获取信息")
|
||||
public class TerminalStatusModel implements Serializable {
|
||||
|
||||
@ApiModelProperty(value = "请求时间", example = "123456")
|
||||
private DateTime queryTime;
|
||||
|
||||
}
|
@ -0,0 +1,23 @@
|
||||
package com.shxy.xymanager_common.vo;
|
||||
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
@Data
|
||||
@ApiModel(value = "拍照时间表触发请求参数", description = "拍照时间表触发请求参数")
|
||||
public class TerminalPhotoTimeGetVo {
|
||||
|
||||
@NotNull(message = "通道号")
|
||||
@ApiModelProperty(value = "通道号", example = "123455")
|
||||
private Short channel;
|
||||
|
||||
@NotNull(message = "检测装置ID不能缺少")
|
||||
@ApiModelProperty(value = "检测装置ID", example = "123455")
|
||||
private String cmdId;
|
||||
|
||||
|
||||
|
||||
}
|
Loading…
Reference in New Issue