using SqlSugar;
namespace NewPdaSqlServer.entity;
///
///
[SugarTable("MES_DBCK_ETAIL")]
public class MesDbckEtail
{
///
///
[SugarColumn(ColumnName = "id", IsPrimaryKey = true)]
public Guid Id { get; set; }
///
///
[SugarColumn(ColumnName = "pid")]
public Guid? Pid { get; set; }
///
///
[SugarColumn(ColumnName = "item_id")]
public int? ItemId { get; set; }
///
/// 申请数量
///
[SugarColumn(ColumnName = "sh_num")]
public decimal? ShNum { get; set; }
///
/// 已扫数量
///
[SugarColumn(ColumnName = "ys_num")]
public decimal? 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_mpdel")]
public string? ItemMpdel { get; set; }
///
/// 当前库存数
///
[SugarColumn(ColumnName = "kc")]
public decimal? Kc { get; set; }
///
///
[SugarColumn(ColumnName = "remark")]
public string? Remark { get; set; }
///
/// 单位
///
[SugarColumn(ColumnName = "unit_Id")]
public int? UnitId { get; set; }
///
/// 顺序
///
[SugarColumn(ColumnName = "forder")]
public int? Forder { get; set; }
///
/// 调出数量
///
[SugarColumn(ColumnName = "DC_NUM")]
public decimal? DcNum { get; set; }
///
/// 调入数量
///
[SugarColumn(ColumnName = "DR_NUM")]
public decimal? DrNum { get; set; }
}