| | |
| | | package org.jeecg.modules.eam.constant; |
| | | |
| | | import lombok.Getter; |
| | | |
| | | @Getter |
| | | public enum InspectionStatus { |
| | | INIT("1", "待点检"), |
| | | IN_PROGRESS("2", "点检中"), |
| | | COMPLETED("3", "点检完成" ), |
| | | CONFIRMED("4", "已确认" ); |
| | | |
| | | private final String code; |
| | | private final String desc; |
| | | |
| | | InspectionStatus(String code, String desc) { |
| | | |
| | | this.code = code; |
| | | this.desc = desc; |
| | | } |
| | | |
| | | // Getters |
| | | public String getCode() { return code; } |
| | | public String getDesc() { return desc; } |
| | | WAIT_INSPECTION, //待点检 |
| | | UNDER_INSPECTION, //点检中 |
| | | WAIT_CONFIRM, //待确认 |
| | | COMPLETE, //已完成 |
| | | ABOLISH, //已作废 |
| | | EXPIRED; //已过期 |
| | | } |