package com.cloudroam.common.enumeration; import lombok.Getter; public enum ProjectTaskStatusEnum { AN("AN","待排配"), AY("AY","已排配"), FN("FN","未开始"), P("P","进行中"), T("T","待测试"), TN("TN","测试不通过"), TY("TY","测试通过"), FY("FY","已完成"), ; @Getter private String message; @Getter private String code; private ProjectTaskStatusEnum(String code, String message){ this.code=code; this.message=message; } }