From f3306d713e1fb2458367387df92293292b21bd73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9B=B9=E9=B9=8F=E9=A3=9E?= Date: Fri, 15 May 2026 14:06:01 +0800 Subject: [PATCH] =?UTF-8?q?feat(quotation):=20=E6=96=B0=E5=A2=9E=E8=81=94?= =?UTF-8?q?=E7=B3=BB=E4=BF=A1=E6=81=AF=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在QuotationGenerateRequest中增加联系人、联系方式、联系邮箱和国家/地区字段 - 在QuotationShoppingOrder中增加联系人、联系方式、联系邮箱和国家/地区字段 - 为新增字段添加了对应的注释说明 --- .../request/QuotationGenerateRequest.java | 20 +++++++++++++++++++ .../entity/QuotationShoppingOrder.java | 20 +++++++++++++++++++ 2 files changed, 40 insertions(+) diff --git a/nflg-mobilebroken-quotation/src/main/java/com/nflg/mobilebroken/quotation/pojo/request/QuotationGenerateRequest.java b/nflg-mobilebroken-quotation/src/main/java/com/nflg/mobilebroken/quotation/pojo/request/QuotationGenerateRequest.java index e52059c1..701d713e 100644 --- a/nflg-mobilebroken-quotation/src/main/java/com/nflg/mobilebroken/quotation/pojo/request/QuotationGenerateRequest.java +++ b/nflg-mobilebroken-quotation/src/main/java/com/nflg/mobilebroken/quotation/pojo/request/QuotationGenerateRequest.java @@ -57,4 +57,24 @@ public class QuotationGenerateRequest { * 备注 */ private String remark; + + /** + * 联系人 + */ + private String contactPerson; + + /** + * 联系方式 + */ + private String contactInformation; + + /** + * 联系邮箱 + */ + private String contactEmail; + + /** + * 国家/地区 + */ + private String contactCountry; } diff --git a/nflg-mobilebroken-repository/src/main/java/com/nflg/mobilebroken/repository/entity/QuotationShoppingOrder.java b/nflg-mobilebroken-repository/src/main/java/com/nflg/mobilebroken/repository/entity/QuotationShoppingOrder.java index 2d69373c..ccfe4bd1 100644 --- a/nflg-mobilebroken-repository/src/main/java/com/nflg/mobilebroken/repository/entity/QuotationShoppingOrder.java +++ b/nflg-mobilebroken-repository/src/main/java/com/nflg/mobilebroken/repository/entity/QuotationShoppingOrder.java @@ -135,4 +135,24 @@ public class QuotationShoppingOrder implements Serializable { * 备注 */ private String remark; + + /** + * 联系人 + */ + private String contactPerson; + + /** + * 联系方式 + */ + private String contactInformation; + + /** + * 联系邮箱 + */ + private String contactEmail; + + /** + * 国家/地区 + */ + private String contactCountry; }