parent
448c49d735
commit
d6f5ca97f7
@ -0,0 +1,12 @@
|
|||||||
|
package com.example.zxweb.common.constant;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description 设备
|
||||||
|
* @Author ZhouWenTao
|
||||||
|
* @Date 2023/9/12 11:35
|
||||||
|
*/
|
||||||
|
public interface DevConstant {
|
||||||
|
class gateway{
|
||||||
|
private String gateway_5lhyslqh="0cefafd2a2ca";
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,21 @@
|
|||||||
|
package com.example.zxweb.vo;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description
|
||||||
|
* @Author ZhouWenTao
|
||||||
|
* @Date 2023/9/12 13:38
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public class QueryCelueListVO implements Serializable {
|
||||||
|
@ApiModelProperty(value = "设备id")
|
||||||
|
private String devid;
|
||||||
|
@ApiModelProperty(value = "页数")
|
||||||
|
private Integer pageNo=1;
|
||||||
|
@ApiModelProperty(value = "分页大小")
|
||||||
|
private Integer pageSize=10;
|
||||||
|
}
|
Loading…
Reference in new issue