From e3271aaeb41fd1b5203b2926b7eeb132651417a7 Mon Sep 17 00:00:00 2001 From: wupengfei <834520024@qq.com> Date: 星期一, 11 八月 2025 17:32:34 +0800 Subject: [PATCH] feat: 接口 --- 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