feat: migrate app routes and business modules

This commit is contained in:
2026-08-12 18:22:59 +08:00
parent 555aa00043
commit cc706378c2
247 changed files with 28623 additions and 14988 deletions
+8
View File
@@ -0,0 +1,8 @@
export const NORMAL_DISABLE_STATUS = Object.freeze({
NORMAL: '0',
DISABLED: '1'
})
const normalDisableStatuses = new Set(Object.values(NORMAL_DISABLE_STATUS))
export const isNormalDisableStatus = (value) => normalDisableStatuses.has(value)