1.技术监督功能干扰源用户代码提交
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
package com.njcn.process.enums;
|
||||
|
||||
import lombok.Getter;
|
||||
|
||||
/**
|
||||
* pqs
|
||||
*
|
||||
* @author cdf
|
||||
* @date 2024/4/10
|
||||
*/
|
||||
|
||||
@Getter
|
||||
public enum ThsFlowTypeEnum {
|
||||
|
||||
|
||||
rGeneralSurvey("电站普测计划",1),
|
||||
rLoadTypeUser("干扰源用户新建计划",2)
|
||||
|
||||
|
||||
|
||||
|
||||
;
|
||||
|
||||
|
||||
private final String name;
|
||||
|
||||
private final Integer code;
|
||||
|
||||
ThsFlowTypeEnum(String name, Integer type) {
|
||||
this.name = name;
|
||||
this.code = type;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user