|
|
@@ -0,0 +1,25 @@
|
|
|
+package com.ydtech.modules.order.entity.api.zm.constants.enums;
|
|
|
+
|
|
|
+import lombok.AllArgsConstructor;
|
|
|
+import lombok.Getter;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @author wenks
|
|
|
+ * @version 0.0.2
|
|
|
+ * @description 中煤返回状态
|
|
|
+ * @date 2023/5/12 17:11
|
|
|
+ */
|
|
|
+@Getter
|
|
|
+@AllArgsConstructor
|
|
|
+public enum ReturnCodeEnum {
|
|
|
+
|
|
|
+ R_N1("-1", "失败"),
|
|
|
+ R_0("0", "成功"),
|
|
|
+ R_1("1", "警告");
|
|
|
+
|
|
|
+
|
|
|
+ private final String code;
|
|
|
+
|
|
|
+ private final String message;
|
|
|
+
|
|
|
+}
|