From 307e714ec9f85bae11ed892cb90e199a341b6be3 Mon Sep 17 00:00:00 2001 From: zhengyiming <540361168@qq.com> Date: 星期三, 06 八月 2025 11:06:13 +0800 Subject: [PATCH] Merge branch 'master' of http://120.26.58.240:8888/r/flexJobAdminBClient --- src/constants/enum.ts | 24 ++++++++++++++++++++++++ 1 files changed, 24 insertions(+), 0 deletions(-) diff --git a/src/constants/enum.ts b/src/constants/enum.ts index f654351..9ea0c7c 100644 --- a/src/constants/enum.ts +++ b/src/constants/enum.ts @@ -1,3 +1,6 @@ +export const TempFolderPath = + 'https://parkmanagement.oss-cn-hangzhou.aliyuncs.com/FlexJob/AdminBClient'; + export enum AreaType { /** * 鐪� @@ -16,3 +19,24 @@ */ Town, } + +export enum Gender { + /** + * 鐢� + */ + Male = 1, + /** + * 濂� + */ + Female = 2, +} + +export const GenderText = { + [Gender.Male]: '鐢�', + [Gender.Female]: '濂�', +}; + +export enum FlexEnterpriseSettingStatus { + NotSetting = -10, + IsSetting = 10, +} -- Gitblit v1.9.1