feat: 申请license

This commit is contained in:
caiyuchao
2025-07-07 10:02:05 +08:00
parent 2b61b69c1b
commit a9043b2d39
5 changed files with 67 additions and 3 deletions

View File

@@ -0,0 +1,27 @@
package org.agt.module.license.enums;
import lombok.AllArgsConstructor;
import lombok.Getter;
/**
* 角色标识枚举
*/
@Getter
@AllArgsConstructor
public enum LicenseStatusEnum {
NOT_APPLIED(0, "未申请"),
IN_APPLICATION(1, "申请中"),
COMPLETED(2, "已完成"); // CRM 系统专用
;
/**
* code
*/
private final Integer code;
/**
* name
*/
private final String name;
}