From b542d4ff172d61e14a0c9428a82cf77bd4119498 Mon Sep 17 00:00:00 2001
From: yangys <y_ys79@sina.com>
Date: 星期二, 05 三月 2024 21:52:27 +0800
Subject: [PATCH] 增加国别的表和查询接口

---
 mdc-parent/mdc-show/src/main/java/com/qianwen/mdc/dto/account/MachineAccountQueryDTO.java |   23 +++++++++++++++++++++--
 1 files changed, 21 insertions(+), 2 deletions(-)

diff --git a/mdc-parent/mdc-show/src/main/java/com/qianwen/mdc/dto/account/MachineAccountQueryDTO.java b/mdc-parent/mdc-show/src/main/java/com/qianwen/mdc/dto/account/MachineAccountQueryDTO.java
index d74d849..e254b15 100644
--- a/mdc-parent/mdc-show/src/main/java/com/qianwen/mdc/dto/account/MachineAccountQueryDTO.java
+++ b/mdc-parent/mdc-show/src/main/java/com/qianwen/mdc/dto/account/MachineAccountQueryDTO.java
@@ -1,5 +1,7 @@
 package com.qianwen.mdc.dto.account;
 
+import java.util.Date;
+
 import com.qianwen.mdc.dto.BasePageDTO;
 
 public class MachineAccountQueryDTO extends BasePageDTO{
@@ -53,6 +55,9 @@
      * 璁惧绫诲瀷
      */
     private Long deviceTypeId;
+    
+    private Date productionDateBegin;
+    private Date productionDateEnd;
     
 	public String getUuid() {
 		return uuid;
@@ -142,7 +147,21 @@
 	public void setDeviceTypeId(Long deviceTypeId) {
 		this.deviceTypeId = deviceTypeId;
 	}
-    
-    
+
+	public Date getProductionDateBegin() {
+		return productionDateBegin;
+	}
+
+	public void setProductionDateBegin(Date productionDateBegin) {
+		this.productionDateBegin = productionDateBegin;
+	}
+
+	public Date getProductionDateEnd() {
+		return productionDateEnd;
+	}
+
+	public void setProductionDateEnd(Date productionDateEnd) {
+		this.productionDateEnd = productionDateEnd;
+	}
 
 }

--
Gitblit v1.9.3