添加项目文件。

This commit is contained in:
2025-12-02 13:10:10 +08:00
parent 93a2382a16
commit 289aa4cbe7
400 changed files with 91177 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace Atomx.Common.Enums
{
/// <summary>
/// 分类类型
/// </summary>
public enum CategoryType
{
/// <summary>
/// 内容
/// </summary>
Content,
/// <summary>
/// 产品
/// </summary>
Product,
}
}

View File

@@ -0,0 +1,15 @@
namespace Atomx.Common.Enums
{
public enum ConfigType
{
/// <summary>
/// 系统设置
/// </summary>
System = 0,
/// <summary>
/// 产品分类
/// </summary>
ProductCategory = 10,
}
}

View File

@@ -0,0 +1,18 @@
namespace Atomx.Common.Enums
{
/// <summary>
/// 数据状态
/// </summary>
public enum DataStatus
{
None = 0,
/// <summary>
/// 可用
/// </summary>
Enable = 1,
/// <summary>
/// 禁用
/// </summary>
Disable = 2,
}
}

View File

@@ -0,0 +1,7 @@
namespace Atomx.Common.Enums
{
public enum LocalizedType
{
None,
}
}

View File

@@ -0,0 +1,10 @@
namespace Atomx.Common.Enums
{
/// <summary>
/// 原料类型
/// </summary>
public enum MaterialType
{
Gold = 1
}
}

View File

@@ -0,0 +1,18 @@
namespace Atomx.Common.Enums
{
/// <summary>
/// 菜单数据类型
/// </summary>
public enum MenuType
{
/// <summary>
/// 未知
/// </summary>
None = 0,
/// <summary>
/// 管理系统
/// </summary>
AdminSystem = 1
}
}

View File

@@ -0,0 +1,28 @@
namespace Atomx.Common.Enums
{
/// <summary>
/// 消息通道
/// </summary>
public enum MessageTemplateType
{
/// <summary>
/// 站内信
/// </summary>
Message = 1,
/// <summary>
/// 电子邮件
/// </summary>
Email,
/// <summary>
/// 短信
/// </summary>
Sms,
/// <summary>
/// 应用推送
/// </summary>
Push
}
}

View File

@@ -0,0 +1,13 @@
namespace Atomx.Common.Enums
{
/// <summary>
/// 产品库存变更类型
/// </summary>
public enum ProductInventoryChangeType
{
Initial = 0, // 初始库存
StockIn = 1, // 入库
StockOut = 2, // 出库
ReturnIn = 3, //退货入库
}
}

View File

@@ -0,0 +1,17 @@
namespace Atomx.Common.Enums
{
/// <summary>
/// 返回代码
/// </summary>
public enum ResultCode
{
/// <summary>
/// 成功
/// </summary>
Success = 0,
/// <summary>
/// 失败
/// </summary>
Fail = 1
}
}