zbj//1.大屏中间三个接口增加分页查询
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
package com.njcn.device.pq.pojo.param;
|
||||
|
||||
import com.njcn.common.pojo.constant.PatternRegex;
|
||||
import com.njcn.web.pojo.param.BaseParam;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import javax.validation.constraints.NotBlank;
|
||||
@@ -15,7 +16,7 @@ import java.io.Serializable;
|
||||
* @date: 2023/03/20
|
||||
*/
|
||||
@Data
|
||||
public class LargeScreenParam implements Serializable {
|
||||
public class LargeScreenParam extends BaseParam implements Serializable {
|
||||
|
||||
@ApiModelProperty(name = "deptIndex", value = "部门索引", required = true)
|
||||
@NotBlank(message = "部门索引不可为空")
|
||||
|
||||
@@ -0,0 +1,57 @@
|
||||
package com.njcn.device.pq.pojo.vo;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @version 1.0.0
|
||||
* @author: zbj
|
||||
* @date: 2023/04/17
|
||||
*/
|
||||
@Data
|
||||
public class MiddleChildVO implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* id
|
||||
*/
|
||||
private String id;
|
||||
|
||||
/**
|
||||
* base
|
||||
*/
|
||||
private Float base;
|
||||
|
||||
/**
|
||||
* ream
|
||||
*/
|
||||
private Float ream;
|
||||
|
||||
/**
|
||||
* statusValue
|
||||
*/
|
||||
private Float statusValue;
|
||||
|
||||
/**
|
||||
* name
|
||||
*/
|
||||
private String name;
|
||||
|
||||
/**
|
||||
* ip
|
||||
*/
|
||||
private String ip;
|
||||
|
||||
/**
|
||||
* port
|
||||
*/
|
||||
private String port;
|
||||
|
||||
/**
|
||||
* comFlag
|
||||
*/
|
||||
private String comFlag;
|
||||
}
|
||||
Reference in New Issue
Block a user