using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HH.WMS.Entitys.External { /// /// 接收入库信息 /// public class GLStationEntity { /// /// 工位所属库区 /// public string stationArea { get; set; } /// /// 工位编码 /// public string stationCode { get; set; } /// /// 工位名称 /// public string stationName { get; set; } } }