Commit bc370c76 by 徐高华

log

parent 04c0ee74
...@@ -439,8 +439,11 @@ public class LoginController extends WebBaseController { ...@@ -439,8 +439,11 @@ public class LoginController extends WebBaseController {
String gicEnterpriseId = jsonObject.getString("enterpriseId"); String gicEnterpriseId = jsonObject.getString("enterpriseId");
String phoneNumber = jsonObject.getString("phoneNumber"); String phoneNumber = jsonObject.getString("phoneNumber");
Long timestamp = jsonObject.getLong("timestamp") ; Long timestamp = jsonObject.getLong("timestamp") ;
logger.info("选择企微列表,gicEnterpriseId={},phoneNumber={}", gicEnterpriseId, phoneNumber); if(null == timestamp) {
if (StringUtils.isAnyBlank(gicEnterpriseId, phoneNumber,timestamp+"")) { return this.fail("登录请求参数异常timestamp");
}
logger.info("选择企微列表,params={}", o);
if (StringUtils.isAnyBlank(gicEnterpriseId, phoneNumber)) {
return this.fail("参数异常"); return this.fail("参数异常");
} }
if(timestamp+1000*60*5 < System.currentTimeMillis()) { if(timestamp+1000*60*5 < System.currentTimeMillis()) {
......
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