@@ -145,3 +145,9 @@ export interface ISecurityConfiguration {
passwordValidity: number;
logReserveDay: number;
}
+
+export enum ERegisterStatus {
+ PENDING = 'pending', // 审批中
+ PASS = 'pass', // 审批通过
+ RETURN = 'return', // 驳回
+}