using System; using Abp.AutoMapper; using System.ComponentModel.DataAnnotations; using ShwasherSys.BasicInfo; namespace ShwasherSys.BasicInfo.StoreHouseLocations.Dto { [AutoMapTo(typeof(StoreHouseLocation))] public class StoreHouseLocationCreateDto { [StringLength(StoreHouseLocation.StoreLocationNoMaxLength)] public string StoreLocationNo { get; set; } /// /// 库区 /// [StringLength(StoreHouseLocation.StoreAreaCodeMaxLength)] public string StoreAreaCode { get; set; } /// /// 货架号 /// [StringLength(StoreHouseLocation.ShelfNumberMaxLength)] public string ShelfNumber { get; set; } /// /// 层次 /// [StringLength(StoreHouseLocation.ShelfLevelMaxLength)] public string ShelfLevel { get; set; } /// /// 序列号 /// [StringLength(StoreHouseLocation.SequenceNoMaxLength)] public string SequenceNo { get; set; } [StringLength(StoreHouseLocation.RemarkMaxLength)] public string Remark { get; set; } /// /// 仓库ID /// public int? StoreHouseId { get; set; } } }