public int count(int uid, Byte type, Integer gid) {
CollectExample example = new CollectExample();
example.or().andUserIdEqualTo(uid).andValueIdEqualTo(gid).andTypeEqualTo(type).andDeletedEqualTo(false);
return (int) collectMapper.countByExample(example);
}
问题描述 收藏夹功能在设计的时候可以收藏商品也可以收藏专题。但实现上只完成了商品的收藏,并没有实现专题的收藏。
可选方案: 一、简化Collect表的结构,去掉专题的收藏。 不建议!
二、完善专题收藏
WxTopicController中仿照WxGoodsController中商品详情的逻辑增加用户是否收藏查询。