发起退款、审核退款

This commit is contained in:
songmingsong
2024-12-06 15:18:53 +08:00
parent be5811ea6e
commit 961df0a151
10 changed files with 100 additions and 13 deletions

View File

@ -36,8 +36,8 @@ public class AppMemberController {
@ApiOperation("登录")
@PostMapping("/login")
@IgnoreToken
public ApiResponse<?> login(@RequestParam(value = "code", required = false) String code,
@RequestParam(value = "userInfoDTO", required = false) WeChatUserInfoDTO userInfoDTO) throws Exception {
public ApiResponse<?> login(@RequestParam(value = "code") String code,
@RequestParam(value = "userInfoDTO") WeChatUserInfoDTO userInfoDTO) throws Exception {
return memberService.login(code, userInfoDTO);
}