107 lines
3.2 KiB
C#
107 lines
3.2 KiB
C#
|
using Admin.NET.Core;
|
|||
|
namespace Admin.NET.Application.Entity;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 入库统计
|
|||
|
/// </summary>
|
|||
|
[SugarTable("WarehousingStatistics","入库统计")]
|
|||
|
public class WarehousingStatistics : EntityTenant
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 名称
|
|||
|
/// </summary>
|
|||
|
[SugarColumn(ColumnName = "Name", ColumnDescription = "名称", Length = 32)]
|
|||
|
public string? Name { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 物料编码
|
|||
|
/// </summary>
|
|||
|
[SugarColumn(ColumnName = "CodeNum", ColumnDescription = "物料编码", Length = 32)]
|
|||
|
public string? CodeNum { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 入库数量
|
|||
|
/// </summary>
|
|||
|
[SugarColumn(ColumnName = "Count", ColumnDescription = "入库数量")]
|
|||
|
public int? Count { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 入库单位
|
|||
|
/// </summary>
|
|||
|
[SugarColumn(ColumnName = "Unit", ColumnDescription = "入库单位", Length = 32)]
|
|||
|
public string? Unit { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 基本数量
|
|||
|
/// </summary>
|
|||
|
[SugarColumn(ColumnName = "BaseCount", ColumnDescription = "基本数量")]
|
|||
|
public int? BaseCount { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 基本单位
|
|||
|
/// </summary>
|
|||
|
[SugarColumn(ColumnName = "BaseUnit", ColumnDescription = "基本单位", Length = 32)]
|
|||
|
public string? BaseUnit { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 品牌
|
|||
|
/// </summary>
|
|||
|
[SugarColumn(ColumnName = "Brand", ColumnDescription = "品牌", Length = 32)]
|
|||
|
public string? Brand { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 规格
|
|||
|
/// </summary>
|
|||
|
[SugarColumn(ColumnName = "Specifications", ColumnDescription = "规格", Length = 32)]
|
|||
|
public string? Specifications { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 入库类型
|
|||
|
/// </summary>
|
|||
|
[SugarColumn(ColumnName = "WarehousingType", ColumnDescription = "入库类型", Length = 32)]
|
|||
|
public string? WarehousingType { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 物料ID
|
|||
|
/// </summary>
|
|||
|
[SugarColumn(ColumnName = "MaterialsId", ColumnDescription = "物料ID")]
|
|||
|
public long? MaterialsId { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 来源ID
|
|||
|
/// </summary>
|
|||
|
[SugarColumn(ColumnName = "SourceId", ColumnDescription = "来源ID")]
|
|||
|
public long? SourceId { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 入库日期
|
|||
|
/// </summary>
|
|||
|
[SugarColumn(ColumnName = "WarehousingDate", ColumnDescription = "入库日期")]
|
|||
|
public DateTime? WarehousingDate { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 入库仓库ID
|
|||
|
/// </summary>
|
|||
|
[SugarColumn(ColumnName = "WarehouseId", ColumnDescription = "入库仓库ID")]
|
|||
|
public long? WarehouseId { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 库位
|
|||
|
/// </summary>
|
|||
|
[SugarColumn(ColumnName = "WarehouseLocation", ColumnDescription = "库位", Length = 32)]
|
|||
|
public string? WarehouseLocation { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 供应商
|
|||
|
/// </summary>
|
|||
|
[SugarColumn(ColumnName = "Supplier", ColumnDescription = "供应商", Length = 32)]
|
|||
|
public string? Supplier { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 备注
|
|||
|
/// </summary>
|
|||
|
[SugarColumn(ColumnName = "Remarks", ColumnDescription = "备注", Length = 32)]
|
|||
|
public string? Remarks { get; set; }
|
|||
|
|
|||
|
}
|