InOutParam.cs
921 字节
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 OnlineStore.Common;
using OnlineStore.LoadCSVLibrary;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
namespace OnlineStore.DeviceLibrary
{
/// <summary>
/// 出入参数
/// </summary>
public class InOutParam
{
public InOutParam()
{
}
public InOutParam Clone()
{
return (InOutParam)this.MemberwiseClone();
}
/// <summary>
/// 出入库的站点编号
/// </summary>
public int DeviceId { get; set; }
/// <summary>
/// 库位编码
/// </summary>
public string slotCode { get; set; } = "";
public string Containercode { get; set; } = "";
public string ToStr()
{
return $"{JsonHelper.SerializeObject(this)}";
}
}
}