domian-build

This commit is contained in:
tongfei
2023-10-18 10:37:41 +08:00
parent 9b739e2e37
commit 05ee79a04f
18 changed files with 2894 additions and 5 deletions

View File

@@ -0,0 +1,42 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace WMS.Web.Domain.Values.Single
{
/// <summary>
/// 单点数据接口-登录要使用的数据接口-方法枚举
/// </summary>
public enum SingleLoginAction
{
/// <summary>
/// 菜单
/// </summary>
Menus = 1,
/// <summary>
/// 人员
/// </summary>
Staff = 2,
/// <summary>
/// 公司
/// </summary>
Company = 3,
/// <summary>
/// 供应商
/// </summary>
Supplier = 4,
/// <summary>
/// 客户
/// </summary>
Customer = 5,
/// <summary>
/// 全部信息
/// </summary>
All = 6,
/// <summary>
/// 公司信息
/// </summary>
CompanyInfo = 7,
}
}