|
|
@@ -59,6 +59,9 @@ public class UserOrder {
|
|
|
|
|
|
private UserInfo userInfo;
|
|
|
|
|
|
+ private ProductComment productComment;
|
|
|
+
|
|
|
+
|
|
|
/**
|
|
|
* 需要条数
|
|
|
*/
|
|
|
@@ -388,5 +391,13 @@ public class UserOrder {
|
|
|
public void setLimitNum(Integer limitNum) {
|
|
|
this.limitNum = limitNum;
|
|
|
}
|
|
|
+
|
|
|
+ public ProductComment getProductComment() {
|
|
|
+ return productComment;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setProductComment(ProductComment productComment) {
|
|
|
+ this.productComment = productComment;
|
|
|
+ }
|
|
|
}
|
|
|
|