diff --git a/bonus-modules/bonus-smart-canteen/src/main/java/com/bonus/canteen/core/customer/dto/CustPageParam.java b/bonus-modules/bonus-smart-canteen/src/main/java/com/bonus/canteen/core/customer/dto/CustPageParam.java new file mode 100644 index 00000000..33e1920d --- /dev/null +++ b/bonus-modules/bonus-smart-canteen/src/main/java/com/bonus/canteen/core/customer/dto/CustPageParam.java @@ -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 exportCols; + + public PageDTO getPage() { + return this.page; + } + + public CustInfoParam getCustInfoParam() { + return this.custInfoParam; + } + + public List 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 exportCols) { + this.exportCols = exportCols; + } + +}