using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace WMS.Core
{
///
///
///
[SugarTable("BILL_INVCONTRCOUNT")]
public partial class BILL_INVCONTRCOUNT
{
public BILL_INVCONTRCOUNT(){
}
///
/// Desc:日期
/// Default:
/// Nullable:False
///
public DateTime F_DATE {get;set;}
///
/// Desc:前一天库存
/// Default:
/// Nullable:True
///
public decimal? F_NUMCOUNT {get;set;}
///
/// Desc:入库数据
/// Default:
/// Nullable:True
///
public decimal? F_INNUMCOUNT {get;set;}
///
/// Desc:出库数据
/// Default:
/// Nullable:True
///
public decimal? F_OUTNUMCOUNT {get;set;}
///
/// Desc:序号
/// Default:
/// Nullable:True
///
public decimal? F_NUM {get;set;}
///
/// Desc:物料类型
/// Default:
/// Nullable:True
///
public string F_MATSTATENUM {get;set;}
///
/// Desc:
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey=true)]
public string F_NO {get;set;}
}
}