Blame view

sys/Hh.Mes.POJO/ApiEntity/WmsSnInfoEntity.cs 985 Bytes
唐召明 authored
1
using System.Collections.Generic;
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>
13
14
        public string Types { get; set; }
唐召明 authored
15
        public List<Result> Result { get; set; } = new List<Result>();
16
17
18
19
20
    }


    public class Result
    {
赖素文 authored
21
22
23
        /// <summary>
        /// 序列号
        /// </summary>
24
        public string Sn { get; set; }
赖素文 authored
25
26
27
28

        /// <summary>
        /// 项目号或者工单号
        /// </summary>
29
        public string CorrelatedCode { get; set; }
赖素文 authored
30
31
32
33
34
        public string EquipmentType { get; set; }
        public string User { get; set; }
赖素文 authored
35
36
37
        /// <summary>
        /// 部件list
        /// </summary>
唐召明 authored
38
        public List<Components> Components { get; set; } = new List<Components>();
39
40
41
42
43
44
45
46
    }

    public class Components
    {
        public string PartCode { get; set; }
    }

}