唐召明
authored
|
1
|
using System.Collections.Generic;
|
赖素文
authored
|
2
3
4
5
6
7
8
9
|
namespace Hh.Mes.POJO.ApiEntity
{
/// <summary>
/// WMS-SN信息推送IOT
/// </summary>
public class WmsSnInfoEntity
{
|
赖素文
authored
|
10
11
12
|
/// <summary>
/// I:新增 D:删除
/// </summary>
|
赖素文
authored
|
13
|
public string types { get; set; }
|
赖素文
authored
|
14
|
|
赖素文
authored
|
15
|
public List<Result> result { get; set; } = new List<Result>();
|
赖素文
authored
|
16
17
18
19
20
|
}
public class Result
{
|
赖素文
authored
|
21
22
23
|
/// <summary>
/// 序列号
/// </summary>
|
赖素文
authored
|
24
|
public string sn { get; set; }
|
赖素文
authored
|
25
26
|
/// <summary>
|
赖素文
authored
|
27
|
/// 工作令号(erp)
|
赖素文
authored
|
28
|
/// </summary>
|
赖素文
authored
|
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
public string correlatedCode { get; set; }
/// <summary>
/// 主工单号,可能是子工单号 (oa申请sn填写)
/// </summary>
public string ordeCode { get; set; }
/// <summary>
/// 项目名称
/// </summary>
public string ordeName { get; set; }
public string equipmentType { get; set; }
public string user { get; set; }
|
赖素文
authored
|
46
47
|
|
赖素文
authored
|
48
|
|
赖素文
authored
|
49
50
51
|
/// <summary>
/// 部件list
/// </summary>
|
赖素文
authored
|
52
|
public List<Components> components { get; set; } = new List<Components>();
|
赖素文
authored
|
53
54
55
56
|
}
public class Components
{
|
赖素文
authored
|
57
|
public string partCode { get; set; }
|
赖素文
authored
|
58
59
60
|
}
}
|