Merge branch 'master' of https://gitee.com/xinyingpower/xymanagerbackend
Conflicts: xymanager_service/src/main/java/com/shxy/xymanager_service/interaction/Cma.javajni
commit
262e1d28b7
Binary file not shown.
@ -0,0 +1,31 @@
|
||||
package com.shxy.xymanager_common.vo;
|
||||
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import javax.validation.constraints.NotNull;
|
||||
import java.util.List;
|
||||
|
||||
@Data
|
||||
@ApiModel(value = "最近图片请求参数", description = "最近图片请求参数")
|
||||
public class TerminalPhotoVo {
|
||||
|
||||
@NotNull(message = "装置列表不能缺少")
|
||||
@ApiModelProperty(value = "装置通道编号列表", example = "123455")
|
||||
private String cmdid;
|
||||
|
||||
@NotNull(message = "通道号")
|
||||
@ApiModelProperty(value = "通道号", example = "123455")
|
||||
private Short channel;
|
||||
|
||||
@NotNull(message = "装置列表不能缺少")
|
||||
@ApiModelProperty(value = "装置通道编号列表", example = "123455")
|
||||
private Short preset;
|
||||
|
||||
@NotNull(message = "图片类型")
|
||||
@ApiModelProperty(value = "图片类型", example = "123455")
|
||||
private Short captureType;
|
||||
|
||||
|
||||
}
|
Loading…
Reference in New Issue