using System; namespace Model.ModelDto.SysDto { public class WareHouseDto { public int Id { get; set; } /// /// 仓库号 /// Default: /// Nullable:False /// public string WareHouseNo { get; set; } /// /// 仓库名称 /// Default: /// Nullable:True /// public string WareHouseName { get; set; } /// /// 仓库类型 0:立体库 1:密集库 /// Default: /// Nullable:True /// public string Type { get; set; } /// /// 存储环境 0: 常温库 1:低温库 3:干燥通风 /// Default: /// Nullable:True /// public string Temperature { get; set; } /// /// 排 /// Default: /// Nullable:True /// public int? Row { get; set; } /// /// 列 /// Default: /// Nullable:True /// public int? Column { get; set; } /// /// 层 /// Default: /// Nullable:True /// public int? Layer { get; set; } /// /// 创建日期 /// public DateTime CreateTime { get; set; } /// /// 更新日期 /// public DateTime? UpdateTime { get; set; } /// /// 创建人 /// public string CreateUserName { get; set; } /// /// 更新人 /// public string UpdateUserName { get; set; } } }