using Admin.NET.Application; namespace Admin.NET.Application; /// /// 库区信息输出参数 /// public class WmsAreaOutput { /// /// 主键Id /// public long Id { get; set; } /// /// 库区编码 /// public string AreaCode { get; set; } /// /// 库区类型 /// public AreaTypeEnum AreaType { get; set; } /// /// 仓库编号 /// public string WarehouseCode { get; set; } /// /// 仓库名称 /// public string WarehouseName { get; set; } /// /// 库区名称 /// public string AreaName { get; set; } /// /// 库区描述 /// public string? AreaDesc { get; set; } /// /// 库存地编码 /// public string ErpCode { get; set; } /// /// 所属仓库 /// public long WarehouseId { get; set; } /// /// 零件级管控 /// public bool? IsBarcodeLevelControl { get; set; } /// /// 检验先进先出 /// public bool? IsFIFO { get; set; } /// /// 零件级管控 /// public bool? IsPartLevelControl { get; set; } /// /// 允许混淆 /// public bool? IsAllowConfusion { get; set; } /// /// 允许负库存 /// public bool? IsAllowNegativeInventory { get; set; } /// /// 是否虚拟 /// public bool? IsVirtually { get; set; } /// /// 是否禁用 /// public bool IsDisabled { get; set; } /// /// 创建时间 /// public DateTime? CreateTime { get; set; } /// /// 修改时间 /// public DateTime? UpdateTime { get; set; } /// /// 创建人Id /// public long? CreateUserId { get; set; } /// /// 创建人 /// public string? CreateUserName { get; set; } /// /// 修改人Id /// public long? UpdateUserId { get; set; } /// /// 修改人 /// public string? UpdateUserName { get; set; } /// /// 软删除 /// public bool IsDelete { get; set; } }