using SqlSugar;
namespace NewPdaSqlServer.entity;
///
/// 调拨出库申请明细
///
[SugarTable("Transfer_Out_DETAIL")]
public class TransferOutDetail
{
///
/// 默认值: (newid())
///
[SugarColumn(ColumnName = "guid", IsPrimaryKey = true)]
public Guid Guid { get; set; }
///
///
[SugarColumn(ColumnName = "pid")]
public Guid? Pid { get; set; }
///
///
[SugarColumn(ColumnName = "item_id")]
public int? ItemId { get; set; }
///
/// 申请数量
///
[SugarColumn(ColumnName = "sh_num")]
public int? ShNum { get; set; }
///
/// 已扫数量
///
[SugarColumn(ColumnName = "ys_num")]
public int? YsNum { get; set; }
///
///
[SugarColumn(ColumnName = "item_unit")]
public string? ItemUnit { get; set; }
///
/// 物料名称
///
[SugarColumn(ColumnName = "item_name")]
public string? ItemName { get; set; }
///
/// 物料编码
///
[SugarColumn(ColumnName = "item_no")]
public string? ItemNo { get; set; }
///
/// 规格型号
///
[SugarColumn(ColumnName = "item_model")]
public string? ItemModel { get; set; }
///
/// 当前库存数
///
[SugarColumn(ColumnName = "kc")]
public int? Kc { get; set; }
}