|
@@ -5,7 +5,7 @@ package com.railway.business.catenary.enums;
|
|
|
*
|
|
*
|
|
|
* @author railway
|
|
* @author railway
|
|
|
*/
|
|
*/
|
|
|
-public enum TestTableStatus {
|
|
|
|
|
|
|
+public enum TestTableStatusEnum {
|
|
|
/** 检查表状态 */
|
|
/** 检查表状态 */
|
|
|
UNREPORTED("0", "未提交"),
|
|
UNREPORTED("0", "未提交"),
|
|
|
REPORTED("1", "已提交"),
|
|
REPORTED("1", "已提交"),
|
|
@@ -16,7 +16,7 @@ public enum TestTableStatus {
|
|
|
private final String code;
|
|
private final String code;
|
|
|
private final String info;
|
|
private final String info;
|
|
|
|
|
|
|
|
- TestTableStatus(String code, String info) {
|
|
|
|
|
|
|
+ TestTableStatusEnum(String code, String info) {
|
|
|
this.code = code;
|
|
this.code = code;
|
|
|
this.info = info;
|
|
this.info = info;
|
|
|
}
|
|
}
|