You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
509 B
Java
25 lines
509 B
Java
package com.glxp.api.enums.dev;
|
|
|
|
import com.baomidou.mybatisplus.annotation.EnumValue;
|
|
import lombok.AllArgsConstructor;
|
|
import lombok.Getter;
|
|
|
|
/**
|
|
* 报修单明细状态
|
|
*/
|
|
@Getter
|
|
@AllArgsConstructor
|
|
public enum DeviceRepairApplyDetailStatusEnum {
|
|
|
|
WAIT_DIAGNOSIS("wait_diagnosis", "待受理"),
|
|
// WAIT_REPAIR("wait_repair", "待维修"),
|
|
REPAIRING("repairing", "维修中"),
|
|
FINISH("finish", "已完成");
|
|
|
|
|
|
@EnumValue
|
|
private final String key;
|
|
|
|
private final String desc;
|
|
}
|