From effd4fc22a51e7a4172983428b5cc9e04ec4938b Mon Sep 17 00:00:00 2001 From: sxu <602087911@qq.com> Date: Wed, 5 Mar 2025 12:49:23 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=86=E9=A1=B5=E6=9F=A5=E8=AF=A2=E7=BB=84?= =?UTF-8?q?=E7=BB=87=E6=9E=B6=E6=9E=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../core/customer/dto/CustPageParam.java | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 bonus-modules/bonus-smart-canteen/src/main/java/com/bonus/canteen/core/customer/dto/CustPageParam.java 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; + } + +}