Authored by qinchao

新接口 :认证进程状态2

... ... @@ -55,12 +55,16 @@ public class StoreSellerServiceImpl implements IStoredSellerService {
public Map<String,Boolean> entryStatus(Integer uid){
logger.info("StoredSellerServiceImpl entryStatus uid is {} ",uid);
Boolean isZhiMaCert=false;
Boolean isStoredSeller=false;
ZhiMaCert zhiMaCert = getZhiMaCertInfo(uid);
if(null != zhiMaCert){
isZhiMaCert = true;
//只有芝麻认证通过了,才去判断是否入驻商户
isStoredSeller = this.isStoredSeller(uid);
}
//只有芝麻认证通过了,才去判断是否入驻商户
Boolean isStoredSeller = this.isStoredSeller(uid);
if(!isZhiMaCert && isStoredSeller){
//这种状态是不合理的,打个日志
logger.error("StoredSellerServiceImpl entryStatus not correct status isZhiMaCert = false ,but isStoredSeller = true ,uid is {} ",uid);
}
Map<String,Boolean> map=new HashMap<>();
... ...