|
|
@@ -1,16 +1,22 @@
|
|
|
package seecoder.devcloud.core.commit;
|
|
|
|
|
|
+import com.fasterxml.jackson.annotation.JsonProperty;
|
|
|
+
|
|
|
/**
|
|
|
* @author PuHong Weng
|
|
|
* @date 2021/3/22
|
|
|
* @description:
|
|
|
*/
|
|
|
public enum CommitState {
|
|
|
-
|
|
|
- UNKNOWN(""),
|
|
|
+ @JsonProperty("unknowx")
|
|
|
+ UNKNOWN("unknown"),
|
|
|
+ @JsonProperty("complete")
|
|
|
COMPLETE("complete"),
|
|
|
+ @JsonProperty("working on")
|
|
|
WORKING_ON("working on"),
|
|
|
+ @JsonProperty("fix")
|
|
|
FIX("fix"),
|
|
|
+ @JsonProperty("fixing on")
|
|
|
FIXING_ON("fixing on");
|
|
|
|
|
|
private final String value;
|