|
|
@ -82,13 +82,13 @@ public class ArtistController {
|
|
|
|
return Result.success(artistService.getListApproveSuccess(page, size));
|
|
|
|
return Result.success(artistService.getListApproveSuccess(page, size));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@ApiOperation(value = "上一次申请的记录", notes = "上一次申请的记录")
|
|
|
|
@ApiOperation(value = "上一次申请的记录", notes = "上一次申请的记录-音乐人注册审批失败后可以自动带出上一次审批填写的数据")
|
|
|
|
@GetMapping("/last/apply/record")
|
|
|
|
@GetMapping("/last/apply/record")
|
|
|
|
public Result<ArtistRegisterDto> lastApplyRecord(@ApiParam(value = "Header中的token信息", required = true) String token) {
|
|
|
|
public Result<ArtistRegisterDto> lastApplyRecord(@ApiParam(value = "Header中的token信息", required = true) String token) {
|
|
|
|
return Result.success(artistService.lastApplyRecord(token));
|
|
|
|
return Result.success(artistService.lastApplyRecord(token));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@ApiOperation(value = "当前申请的状态", notes = "当前申请的状态")
|
|
|
|
@ApiOperation(value = "当前申请的状态", notes = "当前申请的状态-申请状态 0-待审批 1-审批通过 2-审批失败")
|
|
|
|
@GetMapping("/last/apply/result")
|
|
|
|
@GetMapping("/last/apply/result")
|
|
|
|
public Result<UserProcess> lastApplyResult(@ApiParam(value = "Header中的token信息", required = true) @RequestHeader("Authorization") String token) {
|
|
|
|
public Result<UserProcess> lastApplyResult(@ApiParam(value = "Header中的token信息", required = true) @RequestHeader("Authorization") String token) {
|
|
|
|
return Result.success(artistService.lastApplyResult(token));
|
|
|
|
return Result.success(artistService.lastApplyResult(token));
|
|
|
|