添加项目文件。
This commit is contained in:
37
Epost.DAL/Enum/AddressstorageType.cs
Normal file
37
Epost.DAL/Enum/AddressstorageType.cs
Normal 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
|
||||
}
|
||||
}
|
26
Epost.DAL/Enum/FlashMode.cs
Normal file
26
Epost.DAL/Enum/FlashMode.cs
Normal 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
24
Epost.DAL/Enum/LbType.cs
Normal 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
|
||||
}
|
||||
}
|
||||
}
|
38
Epost.DAL/Enum/LightColor.cs
Normal file
38
Epost.DAL/Enum/LightColor.cs
Normal 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
22
Epost.DAL/Enum/LogType.cs
Normal 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
|
||||
|
||||
}
|
||||
}
|
||||
}
|
36
Epost.DAL/Enum/ShowViewType.cs
Normal file
36
Epost.DAL/Enum/ShowViewType.cs
Normal 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
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
}
|
20
Epost.DAL/Enum/SqlLogType.cs
Normal file
20
Epost.DAL/Enum/SqlLogType.cs
Normal 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
|
||||
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user