using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace KH.WMS.Core.Logging.LogEnums
{
///
/// 日志模块枚举
///
public enum LogModule
{
///
/// 系统核心
///
Core = 1000,
///
/// API接口
///
Api = 1001,
///
/// 数据库
///
Database = 1002,
///
/// 缓存
///
Cache = 1003,
///
/// 认证授权
///
Auth = 1004,
///
/// 业务逻辑
///
Business = 1005,
///
/// 外部服务
///
External = 1006,
///
/// 任务调度
///
Job = 1007,
///
/// 文件处理
///
File = 1008,
// WMS 模块
///
/// 入库管理
///
WMS_Inbound = 2001,
///
/// 出库管理
///
WMS_Outbound = 2002,
///
/// 库存管理
///
WMS_Inventory = 2003,
///
/// 货主管理
///
WMS_Owner = 2004,
///
/// 商品管理
///
WMS_Product = 2005,
///
/// 仓库管理
///
WMS_Warehouse = 2006,
///
/// 库区管理
///
WMS_Zone = 2007,
///
/// 库位管理
///
WMS_Location = 2008,
///
/// 盘点管理
///
WMS_Counting = 2009,
///
/// 移库管理
///
WMS_Transfer = 2010,
///
/// 波次管理
///
WMS_Wave = 2011,
///
/// 拣货管理
///
WMS_Picking = 2012,
///
/// 装车管理
///
WMS_Loading = 2013,
///
/// 卸车管理
///
WMS_Unloading = 2014,
///
/// 库内加工
///
WMS_Processing = 2015,
///
/// 补货管理
///
WMS_Replenishment = 2016,
///
/// 策略管理
///
WMS_Strategy = 2017,
///
/// 单据管理
///
WMS_Order = 2018,
///
/// 运输管理
///
WMS_Transport = 2019,
///
/// 计费管理
///
WMS_Billing = 2020,
///
/// 报表管理
///
WMS_Report = 2021
}
}