远程控制修改
This commit is contained in:
@ -17,6 +17,9 @@ public class StationRemoteControl implements Serializable {
|
||||
@ApiModelProperty(value = "电站id")
|
||||
private Integer stationId;
|
||||
|
||||
@ApiModelProperty(value = "电站名称")
|
||||
private String stationName;
|
||||
|
||||
@ApiModelProperty(value = "远程访问ip、也可以是域名")
|
||||
private String ip;
|
||||
|
||||
|
||||
@ -0,0 +1,16 @@
|
||||
package com.ho.business.vo.req;
|
||||
|
||||
import com.ho.business.entity.StationRemoteControl;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class StationRemoteControlPageVo extends StationRemoteControl {
|
||||
|
||||
@ApiModelProperty(value = "第几页")
|
||||
private Integer pageNum=1;
|
||||
|
||||
@ApiModelProperty(value = "分页数量")
|
||||
private Integer pageSize=10;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user