WmsSnInfoEntity.cs 685 Bytes
using MySqlX.XDevAPI.Common;
using System;
using System.Collections.Generic;

namespace Hh.Mes.POJO.ApiEntity
{
    /// <summary>
    /// WMS-SN信息推送IOT
    /// </summary>
    public class WmsSnInfoEntity
    {
        public string Types { get; set; }

        public List<Result> Result { get; set; }
    }


    public class Result
    {
        public string Sn { get; set; }
        public string CorrelatedCode { get; set; }
        public string EquipmentType { get; set; }
        public string User { get; set; }

        public List<Components> Components { get; set; }
    }

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

}