InOutParam.cs
781 字节
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
using log4net;
using OnlineStore.Common;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
namespace CtuDeviceLib
{
/// <summary>
/// 出入参数
/// </summary>
public class InOutParam
{
public InOutParam()
{
}
public InOutParam Clone()
{
return (InOutParam)this.MemberwiseClone();
}
/// <summary>
/// 料箱码
/// </summary>
public string BoxCode { get; set; }
public string DstName { get; set; }
public uint DstPointCode { get; set; }
public string ToStr()
{
return $"{JsonHelper.SerializeObject(this)}";
}
}
}