@@ -193,6 +193,11 @@ public class SeconHandProduct extends Product implements Serializable {
private String showContactFlag;
+ /**
+ * 后台二手商品发布人员名称
+ */
+ private String publisher;
+
@Override
public String toString() {
return "SeconHandProduct{" +
@@ -343,7 +343,8 @@
submitDate,
reviewedDate,
onLineDate,
- source
+ source,
+ publisher
) VALUES (
#{productID},
#{sold},
@@ -374,7 +375,8 @@
#{submitDate},
#{reviewedDate},
#{onLineDate},
- #{source}
+ #{source},
+ #{publisher}
)
</insert>