考试申请字段新增。

This commit is contained in:
Renpc-kilig 2021-05-10 18:01:49 +08:00
parent 33a85dfd0c
commit 502f13c158
2 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@ public class ExamApplyDTO {
private Integer userStatus; private Integer userStatus;
@ApiModelProperty(name = "checkStatus", value = "考试申请审核状态。0未审核1审核通过2审核驳回") @ApiModelProperty(name = "checkStatus", value = "考试申请审核状态。0未审核1审核通过2审核驳回")
private Integer checkStatus; private Integer checkStatus;
@ApiModelProperty(name = "examType", value = "考试类型。1理论2实操") @ApiModelProperty(name = "examType", value = "考试类型。1理论2实操3理论加实操")
private Integer examType; private Integer examType;
@ApiModelProperty(name = "classPlanDTO", value = "考试基本信息") @ApiModelProperty(name = "classPlanDTO", value = "考试基本信息")
private ClassPlanDTO classPlanDTO; private ClassPlanDTO classPlanDTO;

View File

@ -50,7 +50,7 @@ public class ExamApplyVO {
private Integer userStatus; private Integer userStatus;
@ApiModelProperty(name = "checkStatus", value = "考试申请审核状态。0未审核1审核通过2审核驳回") @ApiModelProperty(name = "checkStatus", value = "考试申请审核状态。0未审核1审核通过2审核驳回")
private Integer checkStatus; private Integer checkStatus;
@ApiModelProperty(name = "examType", value = "考试类型。1理论2实操") @ApiModelProperty(name = "examType", value = "考试类型。1理论2实操3理论加实操")
private Integer examType; private Integer examType;
@ApiModelProperty(name = "reason", value = "审核原因") @ApiModelProperty(name = "reason", value = "审核原因")
private String reason; private String reason;