From 9f1d2613dd9f486e5dd4d781070c54d582f61323 Mon Sep 17 00:00:00 2001 From: XinYi Song <2037158277@qq.com> Date: Thu, 16 Dec 2021 10:04:59 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=BA=86=E5=95=86=E5=93=81?= =?UTF-8?q?=E7=9A=84=E5=AE=9E=E4=BD=93=E7=B1=BB=E5=92=8C=E6=95=B0=E6=8D=AE?= =?UTF-8?q?=E5=BA=93=E8=A1=A8=E7=BB=93=E6=9E=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/xkrs/model/entity/ProductEntity.java | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/src/main/java/com/xkrs/model/entity/ProductEntity.java b/src/main/java/com/xkrs/model/entity/ProductEntity.java index 25e7a2b..844143b 100644 --- a/src/main/java/com/xkrs/model/entity/ProductEntity.java +++ b/src/main/java/com/xkrs/model/entity/ProductEntity.java @@ -23,6 +23,24 @@ public class ProductEntity { */ private String productName; + /** + * 省 + */ + @Column(length = 32, columnDefinition = "varchar(32)") + private String productPro; + + /** + * 市 + */ + @Column(length = 32, columnDefinition = "varchar(32)") + private String productCity; + + /** + * 区 + */ + @Column(length = 32, columnDefinition = "varchar(32)") + private String productCounty; + /** * 商品描述 */