using System;
using System.Collections.Generic;
using System.Text;
using SqlSugar;
namespace WMS.Entity.DataEntity
{
///
///库存表
///
[SugarTable("DataStock")]
public class DataStock:BaseEntity
{
///
/// Desc:物料编码
/// Default:
/// Nullable:True
///
public string SkuNo { get; set; }
///
/// Desc:物料名称
/// Default:
/// Nullable:True
///
public string SkuName { get; set; }
///
/// Desc:批次号
/// Default:
/// Nullable:True
///
public string LotNo { get; set; }
///
/// Desc:批次描述
/// Default:
/// Nullable:True
///
public string LotText { get; set; }
///
/// Desc:规格
/// Default:
/// Nullable:True
///
public string Standard { get; set; }
///
/// Desc:供货批次
/// Default:
/// Nullable:True
///
public string SupplierLot { get; set; }
///
/// Desc:数量
/// Default:
/// Nullable:False
///
public int Qty { get; set; }
///
/// Desc:锁定数量
/// Default:
/// Nullable:False
///
public int LockQty { get; set; }
///
/// Desc:冻结数量
/// Default:
/// Nullable:False
///
public int FrozenQty { get; set; }
}
}