namespace Admin.NET.Application; /// /// 仓库统计输出参数 /// public class WarehouseDetailsDto { /// /// 主键Id /// public long Id { get; set; } /// /// 名称 /// public string? Name { get; set; } /// /// 商品条码 /// public string? GoodCode { get; set; } /// /// 物料ID /// public long? MaterialsId { get; set; } /// /// 物料编码 /// public string? MaterialsNum { get; set; } /// /// 规格 /// public string? Specifications { get; set; } /// /// 分类 /// public string? Classify { get; set; } /// /// 库存数量 /// public int? Count { get; set; } /// /// 库存单位 /// public string? Unit { get; set; } /// /// 基本数量 /// public int? BaseCount { get; set; } /// /// 基本单位 /// public string? BaseUnit { get; set; } /// /// 包装比例 /// public string? PackageScale { get; set; } /// /// 批次 /// public string? Batch { get; set; } /// /// 公司 /// public string? Custom { get; set; } /// /// 品牌 /// public string? Brand { get; set; } /// /// 条码类型 /// public string? CodeType { get; set; } /// /// 条码数量 /// public int? CodeCount { get; set; } /// /// 库位 /// public string? WarehouseLocation { get; set; } /// /// 生产日期 /// public DateTime? ProductDate { get; set; } /// /// 失效日期 /// public DateTime? LoseDate { get; set; } /// /// 单重 /// public decimal? SingleWeight { get; set; } /// /// 总重 /// public decimal? TotalWeight { get; set; } /// /// 单价 /// public decimal? UnitPrice { get; set; } /// /// 总价 /// public decimal? TotalPrice { get; set; } /// /// 备注 /// public string? Remarks { get; set; } /// /// 源ID /// public long? SourceId { get; set; } /// /// 仓库ID /// public string? WarehouseId { get; set; } /// /// 拓展字段 /// public string? ExpandField { get; set; } /// /// 租户Id /// public long? TenantId { 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; } }