release- 修改注释

release-2024-08-08
huangyawei 6 months ago
parent e7768d7bcd
commit ff0df5e3b3

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

@ -40,7 +40,7 @@ public class UserProcess implements Serializable {
@ApiModelProperty("申请类型 1-音乐人 2-厂牌")
private Integer type;
@ApiModelProperty("申请状态 0-待审批 1-审批通过 2-审批成功")
@ApiModelProperty("申请状态 0-待审批 1-审批通过 2-审批失败")
private Integer status;
@ApiModelProperty("拒绝理由")

Loading…
Cancel
Save