#20230510 欣影管理平台装置信息查询代码
parent
e611bb65ab
commit
70885343ff
@ -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