新增通用大数据量导出model
parent
27195ab5e9
commit
e513e1442f
@ -0,0 +1,33 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.model.common;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description : 大数据量导出model
|
||||||
|
* @Reference :
|
||||||
|
* @Author : yujia
|
||||||
|
* @CreateDate : 2022-11-14 14:17
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
public class BigExportDataModel {
|
||||||
|
|
||||||
|
private String className;
|
||||||
|
|
||||||
|
private String httpUrl;
|
||||||
|
|
||||||
|
private String exportCol;
|
||||||
|
|
||||||
|
private String title;
|
||||||
|
|
||||||
|
private Integer currentPage;
|
||||||
|
|
||||||
|
private Integer pageSize;
|
||||||
|
|
||||||
|
private Integer totalPages;
|
||||||
|
|
||||||
|
private String enumList;
|
||||||
|
}
|
Loading…
Reference in New Issue