using SqlSugar;
using System;
using System.Collections.Generic;
using System.Text;
namespace wms.sqlsugar.model.cp
{
[Tenant("cp")]
[SugarTable("Bill_InventoryReport")]
public class cpBillInventoryReport : BaseModel
{
///
/// 年月
///
[SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
public string DateMonth { get; set; }
///
/// 类别
///
[SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
public string NameType { get; set; }
///
/// 期初
///
[SugarColumn(ColumnDataType = "decimal", Length = 18, DecimalDigits = 3, IsNullable = false)]
public decimal BeginQty { get; set; }
///
/// 期末
///
[SugarColumn(ColumnDataType = "decimal", Length = 18, DecimalDigits = 3, IsNullable = false)]
public decimal EndQty { get; set; }
///
/// 入库量
///
[SugarColumn(ColumnDataType = "decimal", Length = 18, DecimalDigits = 3, IsNullable = false)]
public decimal StockInQty { get; set; }
///
/// 销售出库
///
[SugarColumn(ColumnDataType = "decimal", Length = 18, DecimalDigits = 3, IsNullable = false)]
public decimal SalesStockOutQty { get; set; }
///
/// 退生产(生产出库)
///
[SugarColumn(ColumnDataType = "decimal", Length = 18, DecimalDigits = 3, IsNullable = false)]
public decimal ProductStockOutQty { get; set; }
///
/// 开始时间(上个月最后一天的8:30)
///
[SugarColumn(ColumnDataType = "datetime", IsNullable = false)]
public DateTime StartTime { get; set; }
///
/// 结束时间(当月最后一天的8:30)
///
[SugarColumn(ColumnDataType = "datetime", IsNullable = false)]
public DateTime EndTime { get; set; }
///
/// 手动出库
///
[SugarColumn(ColumnDataType = "decimal", Length = 18, DecimalDigits = 3, IsNullable = false)]
public decimal ManualStockOutQty { get; set; }
}
}