Commit 62b9e4c8 authored by shiyu's avatar shiyu

查询开店申请单,审核不通过原因

parent 7e720302
...@@ -76,7 +76,7 @@ public class OpenShopServiceImpl implements OpenShopService { ...@@ -76,7 +76,7 @@ public class OpenShopServiceImpl implements OpenShopService {
//查询是否粉丝数超过了100 //查询是否粉丝数超过了100
long fansNum = followFansRecordDao.countFans(userId); long fansNum = followFansRecordDao.countFans(userId);
map.put("fansNum", fansNum); map.put("fansNum", fansNum);
map.put("fansNumAble", fansNum >= 100); map.put("fansNumAble", fansNum >= 2);
//查询发布的商品数是否达到10个 //查询发布的商品数是否达到10个
long itemNum = supplierItemDao.countByCreatorId(userId); long itemNum = supplierItemDao.countByCreatorId(userId);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment