| | |
| | | @ApiModelProperty(value = "管理员确认") |
| | | @Dict(dictTable = "sys_user", dicCode = "username", dicText = "realname") |
| | | private String manageUser; |
| | | /** |
| | | * 管理员确认结果 |
| | | */ |
| | | @ApiModelProperty(value = "管理员确认结果") |
| | | @Dict(dicCode = "approve_reject") |
| | | private String manageUserResult; |
| | | /** 问题描述;默认 无 */ |
| | | @ApiModelProperty(name = "问题描述",notes = "默认 无") |
| | | private String problemDescription ; |
| | |
| | | @ApiModelProperty(name = "管理员确认时间",notes = "") |
| | | @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date confirmTime ; |
| | | private Date confirmTime; |
| | | /** 检查人确认 */ |
| | | @ApiModelProperty(name = "检查人确认",notes = "") |
| | | @Dict(dictTable = "sys_user", dicCode = "username", dicText = "realname") |
| | | private String inspector; |
| | | /** |
| | | * 检查人确认结果 |
| | | */ |
| | | @ApiModelProperty(name = "检查人确认结果",notes = "") |
| | | @Dict(dicCode = "approve_reject") |
| | | private String inspectorResult; |
| | | /** 检查人意见 */ |
| | | @ApiModelProperty(name = "检查人意见",notes = "") |
| | | private String inspectConfirmComment; |