添加项目文件。

This commit is contained in:
jl
2023-01-13 15:30:20 +08:00
parent 40ed216831
commit bf208bde56
834 changed files with 470902 additions and 0 deletions

View File

@ -0,0 +1,37 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Epost.DAL.Enum
{
public class AddressstorageType
{
#region
/// <summary>
/// 设备类型
/// </summary>
public enum Type : int
{
/// <summary>
/// 拣货标签
/// </summary>
[Description("拣货标签")]
Apply = 1,
/// <summary>
/// 显示器
/// </summary>
[Description("显示器")]
MoneyPaying = 2,
/// <summary>
/// 扫描枪
/// </summary>
[Description("扫描枪")]
CheckNoPass = 3
}
#endregion
}
}

View File

@ -0,0 +1,26 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Epost.DAL.Enum
{
public class FlashMode
{
public enum Flash
{
[Description("0")]
,
[Description("1")]
,
[Description("3")]
,
[Description("9")]
}
}
}

24
Epost.DAL/Enum/LbType.cs Normal file
View File

@ -0,0 +1,24 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Epost.DAL.Enum
{
public class LbType
{
public enum Type
{
[Description("中文标签")]
C,
[Description("数字标签")]
N,
[Description("拍灭后无显示")]
Q,
[Description("拍灭后继续显示")]
R
}
}
}

View File

@ -0,0 +1,38 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Epost.DAL.Enum
{
public class LightColor
{
public enum Color
{
[Description("4")]
Red ,
[Description("1")]
Blue,
[Description("2")]
Green,
[Description("7")]
White,
[Description("5")]
Pink,
[Description("6")]
Yellow,
[Description("0")]
Black,
[Description("3")]
Cyan,
}
}
}

22
Epost.DAL/Enum/LogType.cs Normal file
View File

@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Epost.DAL.Enum
{
public class LogType
{
public enum Log_Type
{
[Description("错误日志")]
ERROR,
[Description("信息记录")]
INFO
}
}
}

View File

@ -0,0 +1,36 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Epost.DAL.Enum
{
public class ShowViewType
{
public enum ShowType
{
[Description("绑定箱号")]
BOXBIND = 1,
[Description("无任务")]
NOTASK = 2,
[Description("货位信息")]
LOCATIONLIST = 3,
[Description("SKU信息")]
SKULIST =4,
[Description("关闭")]
CLOSE = 5,
[Description("获取任务")]
GETDATA =6
}
}
}

View File

@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Epost.DAL.Enum
{
public class SqlLogType
{
public enum sqlLogType
{
DEVICE=1,
INFO=2,
SQLINFO=3
}
}
}