1 changed files with 16 additions and 0 deletions
@ -0,0 +1,16 @@ |
|||||
|
package com.project.exam.domain.enums; |
||||
|
|
||||
|
import com.project.base.domain.enums.HasValueEnum; |
||||
|
import lombok.Getter; |
||||
|
import lombok.RequiredArgsConstructor; |
||||
|
|
||||
|
@RequiredArgsConstructor |
||||
|
@Getter |
||||
|
public enum ExamRecordScoringStatusEnum implements HasValueEnum<Integer> { |
||||
|
PENDING(0, "待评分"), |
||||
|
COMPLETED(1, "已评分"), |
||||
|
FAILED(2, "评分失败"); |
||||
|
|
||||
|
private final Integer value; |
||||
|
private final String desc; |
||||
|
} |
||||
Loading…
Reference in new issue