1.国网下穿实体类位置调整

This commit is contained in:
wr
2024-05-16 10:17:35 +08:00
parent 986522c017
commit b77af01995
3 changed files with 59 additions and 37 deletions

View File

@@ -1,30 +0,0 @@
package com.njcn.harmonic.pojo.vo.upload;
import lombok.Data;
/**
* pqs
*
* @author cdf
* @date 2024/5/9
*/
@Data
public class PmsHttpResult<T> {
private String msg;
private Integer code;
private T data;
private String sucess;
private String encrypt_data;
private String other;
public PmsHttpResult(Integer code,T data){
this.code = code;
this.data = data;
}
}

View File

@@ -1,54 +0,0 @@
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(){
}
}