- 后端:review 下订单评论表

This commit is contained in:
YunaiV 2019-05-17 22:09:17 +08:00
parent 79b1b5cc69
commit d2e287828c
3 changed files with 7 additions and 5 deletions

View File

@ -34,7 +34,7 @@
- [x] 首页广告 - [x] 首页广告
- [x] 商品推荐 - [x] 商品推荐
- [x] 优惠劵 - [x] 优惠劵
- [ ] 优惠码【待认领 - [ ] 优惠码【开发中 @native8623 2019-05-17
- [ ] 满减送 20% 【待认领】 - [ ] 满减送 20% 【待认领】
- [ ] 限制折扣 20% 【待认领】 - [ ] 限制折扣 20% 【待认领】
- [ ] 多人拼团【待认领】 - [ ] 多人拼团【待认领】

View File

@ -18,7 +18,7 @@ import lombok.experimental.Accessors;
public class OrderCommentDO extends BaseDO { public class OrderCommentDO extends BaseDO {
/** /**
* 评论id * 评论id // TODO FROM 芋艿 TO wtz 中英文之间要有空格
*/ */
private Integer id; private Integer id;
@ -103,7 +103,7 @@ public class OrderCommentDO extends BaseDO {
private Integer replayCount; private Integer replayCount;
/** /**
* 点赞数 * 点赞数 // TODO FROM 芋艿 TO wtz collect 是收藏的意思最好换个单词噢
*/ */
private Integer collectCount; private Integer collectCount;

View File

@ -8,6 +8,8 @@ import lombok.experimental.Accessors;
/** /**
* 商品评价回复表 * 商品评价回复表
* *
* // TODO FROM 芋艿 TO wtz 商品评价回复表 =订单评论回复表
*
* @author wtz * @author wtz
* @time 2019-05-14 21:00 * @time 2019-05-14 21:00
* *
@ -28,7 +30,7 @@ public class OrderCommentReplayDO extends BaseDO {
private Integer commentId; private Integer commentId;
/** /**
* 回复的类型 * 回复的类型 // TODO FROM 芋艿 TO wtz 记得加下枚举类
*/ */
private Integer replyType; private Integer replyType;
@ -73,7 +75,7 @@ public class OrderCommentReplayDO extends BaseDO {
private String replyUserAvatar; private String replyUserAvatar;
/** /**
* 回复用户身份 * 回复用户身份 // TODO FROM 芋艿 TO wtz 提示userType UserTypeEnum 记录保持一致
*/ */
private Integer replyUserType; private Integer replyUserType;