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