Merge branch 'master' of https://gitee.com/xinyingpower/xymanagerbackend
commit
70ee1b191c
@ -0,0 +1,18 @@
|
|||||||
|
package com.shxy.xymanager_common.dto;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class UpperComputerInfoDto {
|
||||||
|
|
||||||
|
private Integer termId;
|
||||||
|
|
||||||
|
private String cmdId;
|
||||||
|
|
||||||
|
private String ip;
|
||||||
|
|
||||||
|
private Short port;
|
||||||
|
|
||||||
|
private String domain;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,24 @@
|
|||||||
|
package com.shxy.xymanager_common.vo;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import lombok.Data;
|
||||||
|
import org.springframework.validation.annotation.Validated;
|
||||||
|
|
||||||
|
import javax.validation.constraints.Min;
|
||||||
|
import javax.validation.constraints.NotNull;
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
@Validated
|
||||||
|
@ApiModel(value = "查询上位机信息对象", description = "查询上位机信息对象描述")
|
||||||
|
public class TerminalUpperComputerVo {
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "请求ID", example = "123455")
|
||||||
|
private Integer requestId;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "装置编号", example = "123455")
|
||||||
|
private Integer termId;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue