From 5d3529a43c2f80c6eff5235c646a446737dcb13c Mon Sep 17 00:00:00 2001
From: wupengfei <834520024@qq.com>
Date: 星期三, 30 七月 2025 14:07:55 +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