BOX_Config.cs
1.0 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
using log4net;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
namespace SmartShelf.LoadCSVLibrary
{
/// <summary>
/// 手动料仓配置
/// </summary>
public class BOX_Config : StoreConfig
{
public BOX_Config()
: base()
{
}
public BOX_Config(int id, string cid, string type, string filepath)
: base(id, cid, type, filepath)
{
}
/// <summary>
/// 端口号
/// </summary>
[ConfigProAttribute("Door_PortName")]
public string Door_PortName { get; set; }
/// <summary>
/// PRO,IOIP,AIO_IP,192.168.200.11
/// </summary>
[ConfigProAttribute("AIO_IP")]
public string AIO_IP { get; set; }
/// <summary>
/// PRO 使用哪种IP模块 UseAIOBOX 1
/// </summary>
[ConfigProAttribute("UseAIOBOX")]
public int UseAIOBOX { get; set; }
}
}