YouChain_WMS_Web/nc_wms_web/src/constants/index.ts

49 lines
1.6 KiB
TypeScript
Raw Normal View History

2025-03-14 17:13:19 +08:00
/*
*
*
* @Author: 1024-
* @Date: 2022-09-06 19:58:28
* @Wechat: zhuda1024
* @Email: lab1024@163.com
* @Copyright 1024 https://1024lab.net Since 2012
*/
import menu from './system/menu-const';
import goods from './business/erp/goods-const';
import category from './business/erp/category-const';
2025-04-25 18:16:53 +08:00
import {LOGIN_DEVICE_ENUM} from './system/login-device-const';
import {FLAG_NUMBER_ENUM, GENDER_ENUM, USER_TYPE_ENUM} from './common-const';
import {LAYOUT_ENUM} from './layout-const';
2025-03-14 17:13:19 +08:00
import file from './support/file-const';
import notice from './business/oa/notice-const';
import loginLog from './support/login-log-const';
import enterprise from './business/oa/enterprise-const';
import message from './business/message/message-const';
import codeGeneratorConst from './support/code-generator-const';
import changeLogConst from './support/change-log-const';
import jobConst from './support/job-const';
2025-04-08 10:17:41 +08:00
import USAGE_STATUS_ENUM from './business/wms/base/usagestatus-const'
import ASN_ORDER_TYPE_ENUM from '/@/api/business/wms/receive/asn/asn-const'
2025-04-25 18:16:53 +08:00
import PICK_ORDER_TYPE_ENUM from '/@/api/business/wms/shipping/pick/pick-const'
2025-03-14 17:13:19 +08:00
export default {
2025-04-25 18:16:53 +08:00
FLAG_NUMBER_ENUM,
LOGIN_DEVICE_ENUM,
GENDER_ENUM,
USER_TYPE_ENUM,
LAYOUT_ENUM,
...loginLog,
...menu,
...goods,
...category,
...file,
...notice,
...enterprise,
...message,
...codeGeneratorConst,
...changeLogConst,
...jobConst,
...USAGE_STATUS_ENUM,
...ASN_ORDER_TYPE_ENUM,
...PICK_ORDER_TYPE_ENUM
2025-03-14 17:13:19 +08:00
};