using SqlSugar; namespace NewPdaSqlServer.entity; /// /// [SugarTable("MES_INV_ITEM_MOVES_C_DETAILS")] public class MesInvItemMovesCDetails { /// /// [SugarColumn(ColumnName = "guid", IsPrimaryKey = true)] public Guid Guid { get; set; } /// /// [SugarColumn(ColumnName = "item_move_guid")] public Guid? ItemMoveGuid { get; set; } /// /// 物料条码 /// [SugarColumn(ColumnName = "item_barcode")] public string? ItemBarcode { get; set; } /// /// 客户物料编码(无条码手工录入,有条码为冗余字段) /// [SugarColumn(ColumnName = "c_item_code")] public string? CItemCode { get; set; } /// /// 信华物料编码(无条码手工录入,有条码为冗余字段) /// [SugarColumn(ColumnName = "item_no")] public string? ItemNo { get; set; } /// /// 厂家批次 /// [SugarColumn(ColumnName = "lot_no")] public string? LotNo { get; set; } /// /// 数量(无条码手工录入,有条码为冗余字段) /// [SugarColumn(ColumnName = "quantity")] public decimal? Quantity { get; set; } /// /// 出库方式(1:有条码,0:无条码) /// 默认值: ((1)) /// [SugarColumn(ColumnName = "barcode_flag")] public int? BarcodeFlag { get; set; } /// /// 环保标志(无条码手工录入,有条码为冗余字段) /// 默认值: ((1)) /// [SugarColumn(ColumnName = "ep_flag")] public int? EpFlag { get; set; } /// /// 创建人 /// [SugarColumn(ColumnName = "create_by")] public string? CreateBy { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "create_date")] public DateTime? CreateDate { get; set; } /// /// 最后更新人 /// [SugarColumn(ColumnName = "lastupdate_by")] public string? LastupdateBy { get; set; } /// /// 最后更新时间 /// [SugarColumn(ColumnName = "lastupdate_date")] public DateTime? LastupdateDate { get; set; } /// /// 子库id /// [SugarColumn(ColumnName = "inv_depots_id")] public int? InvDepotsId { get; set; } /// /// 货位id /// [SugarColumn(ColumnName = "inv_depot_sections_id")] public int? InvDepotSectionsId { get; set; } /// /// 客户编码 /// [SugarColumn(ColumnName = "cust_no")] public string? CustNo { get; set; } /// /// 任务令号 /// [SugarColumn(ColumnName = "task_no")] public string? TaskNo { get; set; } /// /// 移出仓库编号 /// [SugarColumn(ColumnName = "from_depots_code")] public string? FromDepotsCode { get; set; } /// /// 移出库位编号 /// [SugarColumn(ColumnName = "from_depot_sections_code")] public string? FromDepotSectionsCode { get; set; } /// /// 条码备注 /// [SugarColumn(ColumnName = "remark")] public string? Remark { get; set; } /// /// 分厂编码 /// [SugarColumn(ColumnName = "factory")] public string? Factory { get; set; } /// /// 公司代码 /// [SugarColumn(ColumnName = "company")] public string? Company { get; set; } /// /// 箱号 /// [SugarColumn(ColumnName = "box_no")] public string? BoxNo { get; set; } /// /// 卡板号 /// [SugarColumn(ColumnName = "ko_no")] public string? KoNo { get; set; } /// /// 移入仓库编号 /// [SugarColumn(ColumnName = "inv_depots_code")] public string? InvDepotsCode { get; set; } /// /// 移入库位编号 /// [SugarColumn(ColumnName = "inv_depot_sections_code")] public string? InvDepotSectionsCode { get; set; } /// /// 质检结果 /// [SugarColumn(ColumnName = "iqc_status")] public string? IqcStatus { get; set; } /// /// 小车编号 /// [SugarColumn(ColumnName = "fcar")] public string? Fcar { get; set; } /// /// 入库日期 /// [SugarColumn(ColumnName = "indep_date")] public DateTime? IndepDate { get; set; } /// /// 冻结提交重检,0:冻结未提交重检,1:冻结并提交重检 /// 默认值: ((0)) /// [SugarColumn(ColumnName = "visable_submit")] public int? VisableSubmit { get; set; } /// /// 提交重检人 /// [SugarColumn(ColumnName = "visable_submit_by")] public string? VisableSubmitBy { get; set; } /// /// 提交重检时间 /// [SugarColumn(ColumnName = "visable_submit_date")] public DateTime? VisableSubmitDate { get; set; } /// /// 产品型号 /// [SugarColumn(ColumnName = "board_style")] public string? BoardStyle { get; set; } /// /// 任务单号 /// [SugarColumn(ColumnName = "work_no")] public string? WorkNo { get; set; } /// /// 任务单行号 /// [SugarColumn(ColumnName = "work_line")] public int? WorkLine { get; set; } /// /// 供应商编号 /// [SugarColumn(ColumnName = "supp_no")] public string? SuppNo { get; set; } /// /// 调入 /// [SugarColumn(ColumnName = "move_ok")] public int? MoveOk { get; set; } /// /// 物料ID /// [SugarColumn(ColumnName = "item_id")] public int? ItemId { get; set; } /// /// K3ID /// [SugarColumn(ColumnName = "EBELN_K3ID")] public long? EbelnK3id { get; set; } /// /// 行K3ID /// [SugarColumn(ColumnName = "LINE_K3ID")] public long? LineK3id { get; set; } }