This commit is contained in:
777
2025-12-03 16:52:17 +08:00
parent 46a039a678
commit c91ede94a1
22 changed files with 555 additions and 11 deletions

View File

@@ -8,12 +8,18 @@ import lombok.Getter;
*/
@Getter
public enum ConsumeLogStatus {
NO(-1),
READY(0),
ALREADY(1);
NO(-1,"无需分销"),
READY(0,"待分销"),
ALREADY(1, "已分销");
private final Integer code;
private String text;
ConsumeLogStatus(Integer code) {
this.code = code;
}
ConsumeLogStatus(Integer code, String text) {
this.code = code;
this.text = text;
}
}