using System; using Abp.AutoMapper; using Abp.Application.Services.Dto; using ShwasherSys.BasicInfo; namespace ShwasherSys.BasicInfo.StoreHouseLocations.Dto { [AutoMapTo(typeof(StoreHouseLocation)),AutoMapFrom(typeof(StoreHouseLocation))] public class StoreHouseLocationDto: EntityDto { public string StoreLocationNo { get; set; } /// /// 库区 /// public string StoreAreaCode { get; set; } /// /// 货架号 /// public string ShelfNumber { get; set; } /// /// 层次 /// public string ShelfLevel { get; set; } /// /// 序列号 /// public string SequenceNo { get; set; } public string Remark { get; set; } /// /// 仓库ID /// public int? StoreHouseId { get; set; } } }