zbj//1.功率负荷排名
This commit is contained in:
@@ -29,4 +29,6 @@ public class LargeScreenParam implements Serializable {
|
||||
@Pattern(regexp = PatternRegex.TIME_FORMAT, message = "时间格式错误")
|
||||
private String searchEndTime;
|
||||
|
||||
@ApiModelProperty("返回条数")
|
||||
private Integer limit;
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
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/14
|
||||
*/
|
||||
@Data
|
||||
public class PowerOrderVO implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* 名称
|
||||
*/
|
||||
@ApiModelProperty("名称")
|
||||
private String name;
|
||||
|
||||
/**
|
||||
* 功率最大值
|
||||
*/
|
||||
@ApiModelProperty("功率最大值")
|
||||
private String max;
|
||||
|
||||
/**
|
||||
* id
|
||||
*/
|
||||
@ApiModelProperty("id")
|
||||
private String id;
|
||||
}
|
||||
Reference in New Issue
Block a user