Merge branch 'master' of http://dev.xinyingpower.com:8080/git/xymp/backend
Conflicts: xymanager_service/src/main/java/com/shxy/xymanager_service/impl/TerminalScheduleRuleServiceImpl.javamaster
commit
90ac7742d3
@ -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.NotBlank;
|
||||||
|
import javax.validation.constraints.NotNull;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
@ApiModel(value = "声光报警设置对象", description = "声光报警设置对象描述")
|
||||||
|
public class VideoGetVo {
|
||||||
|
|
||||||
|
@NotBlank(message = "监测装置ID")
|
||||||
|
@ApiModelProperty(value = "监测装置ID", example = "123455")
|
||||||
|
private String cmdId;
|
||||||
|
|
||||||
|
@NotNull(message = "通道编号")
|
||||||
|
@ApiModelProperty(value = "通道编号", example = "01")
|
||||||
|
private short channelId;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue