| | |
| | | AUDITING("AUDITING", "审核中"), |
| | | AUDITING_SUCCESS("AUDITING_SUCCESS", "审核通过"), |
| | | AUDITING_FAIL("AUDITING_FAIL", "审核不通过"), |
| | | FINISH("FINISH", "已完成"), |
| | | ; |
| | | |
| | | |
| | |
| | | @TableField("processing_period") |
| | | private Integer processingPeriod; |
| | | |
| | | |
| | | @ApiModelProperty("是否超时,0没有 1超时") |
| | | @TableField("overtime") |
| | | private Integer overtime; |
| | | } |
| | |
| | | /** 运维检测结果 */ |
| | | private String ywCheckResult; |
| | | |
| | | /** 0未超时 1超时 */ |
| | | private Integer overtime; |
| | | |
| | | public static WorkOrderVO getVoByEntity(@NonNull WorkOrder entity, WorkOrderVO vo) { |
| | | if(vo == null) { |
| | | vo = new WorkOrderVO(); |
| | |
| | | <result column="yw_result" property="ywResult"/> |
| | | <result column="yw_condition" property="ywCondition"/> |
| | | <result column="yw_check_result" property="ywCheckResult"/> |
| | | <result column="overtime" property="overtime"/> |
| | | </resultMap> |
| | | |
| | | <select id="page" resultType="com.ycl.platform.domain.vo.WorkOrderVO"> |