| 12345678910111213141516171819202122232425262728293031 |
- package cn.seecoder.web.model.enums;
- import com.fasterxml.jackson.annotation.JsonProperty;
- /**
- * @author PuHong Weng
- * @date 2021/5/2
- * @description:
- */
- public enum FuncTestStepState {
- @JsonProperty("待测试")
- WAITING("待测试"),
- @JsonProperty("已测试")
- PASS("已测试"),
- @JsonProperty("出现BUG")
- BUG("出现BUG");
- private final String value;
- FuncTestStepState(String value){
- this.value=value;
- }
- @Override
- public String toString(){
- return value;
- }
- }
|