返回 AiToEarn
account.enum.ts
1 export enum AccountStatus {
2 NORMAL = 1, // 可用
3 ABNORMAL = 0, // 不可用
4 }
5
5 lines TYPESCRIPT