Commit c54572d8 by fudahua

fix: 拒绝空指针

parent cd8b86c2
......@@ -195,7 +195,7 @@ public class AuditController extends WebBaseController{
LoginDTO login = (LoginDTO) AuthRequestUtil.getLoginUser();
String staffId = login.getStaffDTO().getStaffId();
String staffName = login.getStaffDTO().getStaffName();
auditApiService.refuse(auditId, auditReason,staffName,staffId);
auditApiService.refuse(auditId, auditReason, staffId, staffName);
return resultResponse(HaoBanErrCode.ERR_1);
}
//审核同意
......
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