using SqlSugar; namespace NewPdaSqlServer.entity; /// /// [SugarTable("WW_GD_DETAIL")] public class WwGdDetail { /// /// 主键 /// [SugarColumn(ColumnName = "id", IsPrimaryKey = true)] public Guid Id { get; set; } /// /// 工单主键 /// [SugarColumn(ColumnName = "pid")] public Guid? Pid { get; set; } /// /// [SugarColumn(ColumnName = "erpid")] public int? Erpid { get; set; } /// /// [SugarColumn(ColumnName = "eid")] public int? Eid { get; set; } /// /// 物料id /// [SugarColumn(ColumnName = "dab003")] public int? Dab003 { get; set; } /// /// 需领 /// [SugarColumn(ColumnName = "dab006")] public int? Dab006 { get; set; } /// /// 已领 /// 默认值: ((0)) /// [SugarColumn(ColumnName = "dab007")] public int? Dab007 { get; set; } /// /// 单位 /// [SugarColumn(ColumnName = "dab009")] public int? Dab009 { get; set; } /// /// 实领用量 /// 默认值: ((0)) /// [SugarColumn(ColumnName = "dab020")] public int? Dab020 { get; set; } /// /// 补领数量 /// 默认值: ((0)) /// [SugarColumn(ColumnName = "dab021")] public int? Dab021 { get; set; } /// /// 退料数量 /// 默认值: ((0)) /// [SugarColumn(ColumnName = "dab022")] public int? Dab022 { get; set; } /// /// 超领数量 /// 默认值: ((0)) /// [SugarColumn(ColumnName = "dab023")] public int? Dab023 { get; set; } /// /// 良品退料 /// [SugarColumn(ColumnName = "lp_tl")] public int? LpTl { get; set; } /// /// 来料不良 /// [SugarColumn(ColumnName = "ll_bl")] public int? LlBl { get; set; } /// /// 作业不良 /// [SugarColumn(ColumnName = "zy_bl")] public int? ZyBl { get; set; } /// /// 仓库id /// [SugarColumn(ColumnName = "dab017")] public string? Dab017 { get; set; } /// /// 仓库名称 /// [SugarColumn(ColumnName = "dab018")] public string? Dab018 { get; set; } /// /// 工单号 /// [SugarColumn(ColumnName = "dab001")] public string? Dab001 { get; set; } /// /// 组成用量 /// [SugarColumn(ColumnName = "dab012")] public int? Dab012 { get; set; } /// /// 序号 /// [SugarColumn(ColumnName = "dab002")] public int? Dab002 { get; set; } [SugarColumn(IsIgnore = true)] public decimal? wNum { get; set; } [SugarColumn(IsIgnore = true)] public string? ItemName { get; set; } [SugarColumn(IsIgnore = true)] public string? ItemNo { get; set; } }