using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Aucma.Core.Tasks.Models { /// /// 货道信息 /// public class SpaceDetailModel { public int ObjId { get; set; } /// /// 箱型 /// public string StoreType { get; set; } /// /// 数量 /// public int StoreAmount { get; set; } } }