using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Volo.Abp.Domain.Entities; namespace Win_in.Sfs.Wms.DataExchange.Domain.Fawtyg.Tyrp; public class locdout : Entity { /// /// 储位 /// public string locdout_loc { get; set; } /// /// 物品 /// public string locdout_part { get; set; } public override object[] GetKeys() { return new object[] { locdout_loc, locdout_part }; } }