using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HH.WMS.Entitys.External { [Name("同步货位状态")] public class SynchroLocationEntity { public string StockCode { get; set; } public string Location { get; set; } public int Type { get; set; } public int State { get; set; } } }