Commit c2f75516 by 徐高华

登录判断

parent 6cbed66c
......@@ -192,7 +192,10 @@ public class QywxOpenController {
}
OpenStaffDTO openStaff = staffResp.getResult() ;
if(null != openStaff && openStaff.getStatusFlag()==1) {
return RestResponse.failure("9999","导购账号已授权") ;
StaffDTO staff = this.staffApiService.selectById(staffId);
openStaff.setStaffHeadImg(staff.getHeadImg());
openStaff.setStaffName(staff.getStaffName());
return RestResponse.successResult(openStaff) ;
}
}
String checkMsg = this.check(wxEnterpriseId, enterpriseId , null != staffResp.getResult());
......
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