分页查询组织架构

This commit is contained in:
sxu 2025-03-05 12:49:23 +08:00
parent c3974f79b0
commit effd4fc22a
1 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1,35 @@
package com.bonus.canteen.core.customer.dto;
import com.bonus.canteen.core.common.utils.PageDTO;
import java.util.List;
public class CustPageParam {
private PageDTO page;
private CustInfoParam custInfoParam;
private List<String> exportCols;
public PageDTO getPage() {
return this.page;
}
public CustInfoParam getCustInfoParam() {
return this.custInfoParam;
}
public List<String> getExportCols() {
return this.exportCols;
}
public void setPage(final PageDTO page) {
this.page = page;
}
public void setCustInfoParam(final CustInfoParam custInfoParam) {
this.custInfoParam = custInfoParam;
}
public void setExportCols(final List<String> exportCols) {
this.exportCols = exportCols;
}
}