Commit 148142a1 by 墨竹

refactor:增加日志

parent b09e5141
......@@ -192,7 +192,8 @@ public class WxEnterpriseInfoController extends WebBaseController {
@IgnoreLogin
public RestResponse<String> welldoneLogin(@RequestBody @Valid StaffLoginQO staffLoginQO, HttpServletRequest request) {
String staffId = staffLoginQO.getStaffId();
logger.info("好办登录,staffId:{}", staffId);
String loginPhoneNumber = staffLoginQO.getPhoneNumber();
logger.info("好办登录,staffId:{},loginPhoneNumber:{}", staffId, loginPhoneNumber);
StaffDTO staffDTO = staffApiService.selectById(staffId);
if (staffDTO == null) {
return RestResponse.failure(String.valueOf(HaoBanErrCode.ERR_6.getCode()), HaoBanErrCode.ERR_6.getMsg());
......
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