河北两级贯通文档修改
冀北台账管理接口开发
This commit is contained in:
@@ -76,4 +76,31 @@ public class DimBusBarVO {
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
@Data
|
||||
public static class DimBusBarMonitorVoltageVO{
|
||||
private String actualCollectNum;
|
||||
private String busId;
|
||||
private String busName;
|
||||
private String busVoltageLevel;
|
||||
private String busVoltageLevelName;
|
||||
private String cityOrg;
|
||||
private String cityOrgName;
|
||||
private String dataFullRate;
|
||||
private String expectCollectNum;
|
||||
private String id;
|
||||
private String maintOrg;
|
||||
private String maintOrgName;
|
||||
private String monitorId;
|
||||
private String monitorName;
|
||||
private String statDate;
|
||||
private String stationId;
|
||||
private String stationName;
|
||||
private String status;
|
||||
private String statusName;
|
||||
private String whetherOptimal;
|
||||
private String whetherOptimalName;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,54 @@
|
||||
package com.njcn.harmonic.pojo.vo.upload;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import org.apache.poi.ss.formula.functions.T;
|
||||
|
||||
import java.util.Collections;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* pqs
|
||||
*
|
||||
* @author cdf
|
||||
* @date 2024/5/15
|
||||
*/
|
||||
@Data
|
||||
public class PmsPage<T> {
|
||||
|
||||
public List<T> list = Collections.emptyList();
|
||||
|
||||
/**
|
||||
* 总数
|
||||
*/
|
||||
public long total = 0;
|
||||
/**
|
||||
* 每页显示条数,默认 10
|
||||
*/
|
||||
public long size = 10;
|
||||
|
||||
/**
|
||||
* 当前页
|
||||
*/
|
||||
public long current = 1;
|
||||
|
||||
public long pageNum;
|
||||
public long pageSize;
|
||||
public long pages;
|
||||
public long prePage;
|
||||
public long startRow;
|
||||
|
||||
|
||||
public PmsPage(long current,long size){
|
||||
this.current = current;
|
||||
this.size = size;
|
||||
}
|
||||
|
||||
|
||||
public PmsPage(){
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user