Commit d8b3eff5 authored by 技术部-任文超's avatar 技术部-任文超

打log

parent 29be86b0
......@@ -3,6 +3,7 @@ package cn.quantgroup.xyqb.controller.internal.user;
import cn.quantgroup.xyqb.Constants;
import cn.quantgroup.xyqb.aspect.captcha.CaptchaFineteValidator;
import cn.quantgroup.xyqb.aspect.captcha.CaptchaValidator;
import cn.quantgroup.xyqb.aspect.logcaller.LogHttpCaller;
import cn.quantgroup.xyqb.aspect.token.OneTimeTokenValidator;
import cn.quantgroup.xyqb.controller.IBaseController;
import cn.quantgroup.xyqb.entity.Merchant;
......@@ -95,6 +96,7 @@ public class UserController implements IBaseController {
*/
@CaptchaValidator
@RequestMapping("/loginForH5")
@LogHttpCaller
public JsonResult loginWithFineteCaptcha(
@RequestParam(required = false, defaultValue = "1") Long channelId, String appChannel,
@RequestParam(required = false, defaultValue = "1") Long createdFrom,
......@@ -121,6 +123,7 @@ public class UserController implements IBaseController {
*/
@OneTimeTokenValidator
@RequestMapping("/login/fastForH5")
@LogHttpCaller
public JsonResult loginFastWithFineteCaptcha(
@RequestParam(required = false, defaultValue = "1") Long channelId, String appChannel,
@RequestParam(required = false, defaultValue = "1") Long createdFrom,
......@@ -143,6 +146,7 @@ public class UserController implements IBaseController {
}
@RequestMapping("/login")
@LogHttpCaller
public JsonResult login(
@RequestParam(required = false, defaultValue = "1") Long channelId, String appChannel,
@RequestParam(required = false, defaultValue = "1") Long createdFrom,
......@@ -183,6 +187,7 @@ public class UserController implements IBaseController {
}
@RequestMapping("/login/fast")
@LogHttpCaller
public JsonResult loginFast(
@RequestParam(required = false, defaultValue = "1") Long channelId, String appChannel,
@RequestParam(required = false, defaultValue = "1") Long createdFrom,
......@@ -300,6 +305,7 @@ public class UserController implements IBaseController {
* @return
*/
@RequestMapping("/register/fast")
@LogHttpCaller
public JsonResult registerFast(@RequestParam String phoneNo, @RequestParam String verificationCode, @RequestParam(required = false) Long channelId,
@RequestParam(required = false) Long registerFrom, @RequestParam(required = false, defaultValue = "") String appChannel,
@RequestParam(required = false)Long btRegisterChannelId,@RequestParam(required = false)String dimension) {
......@@ -346,6 +352,7 @@ public class UserController implements IBaseController {
* @return
*/
@RequestMapping("/register")
@LogHttpCaller
public JsonResult register(@RequestParam String phoneNo, @RequestParam String password,
@RequestParam String verificationCode, @RequestParam(required = false) Long channelId,
@RequestParam(required = false) Long registerFrom,
......@@ -418,6 +425,7 @@ public class UserController implements IBaseController {
* @return
*/
@RequestMapping("/reset_password")
@LogHttpCaller
public JsonResult resetPassword(@RequestParam String phoneNo,
@RequestParam String password,
@RequestParam(required = false) String registerFrom,
......
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