Jelajahi Sumber

增加发布人名称

plf 4 tahun lalu
induk
melakukan
d487545322

+ 5 - 0
base-module/src/main/java/com/caimei/module/base/entity/po/SeconHandProduct.java

@@ -193,6 +193,11 @@ public class SeconHandProduct extends Product implements Serializable {
 
     private String showContactFlag;
 
+    /**
+     * 后台二手商品发布人员名称
+     */
+    private String publisher;
+
     @Override
     public String toString() {
         return "SeconHandProduct{" +

+ 4 - 2
product/src/main/resources/com-caimei-module-product/ProductModuleMapper.xml

@@ -343,7 +343,8 @@
 			submitDate,
 			reviewedDate,
 			onLineDate,
-			source
+			source,
+			publisher
 		) VALUES (
 			#{productID},
 			#{sold},
@@ -374,7 +375,8 @@
 			#{submitDate},
 			#{reviewedDate},
 			#{onLineDate},
-			#{source}
+			#{source},
+			#{publisher}
 		)
     </insert>