WMSInventoryInterface.cs 725 Bytes
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace HHECS.Model.Entities
{
    /// <summary>
    /// WMS库存接口查询 
    /// </summary>
    public class WMSInventoryInterface
    {
        public int Id { get; set; }
        public string OrderCode { get; set; }
        public string MaterialCode { get; set; }
        public string MaterialNameAndSpec { get; set; }
        public string MaterialBatch { get; set; }
        public int Qty { get; set; }
        public string Unit { get; set; }
        public string PalletQty { get; set; }
        public string PalletSpec { get; set; }
        public string State { get; set; }

    }
}