using SqlSugar; namespace MES.Service.Modes.FBSDB; /// /// 调拨单明细 /// [SugarTable("MES_INV_ITEM_MOVE_ITEMS")] public class MesInvItemMoveItems { /// /// ID /// [SugarColumn(ColumnName = "ID", OracleSequenceName = "SEQ_MOVE_DETAIL", IsPrimaryKey = true)] public decimal Id { get; set; } /// /// 主表id /// [SugarColumn(ColumnName = "ITEM_MOVE_ID")] public decimal? ItemMoveId { get; set; } /// /// 物料内码 /// [SugarColumn(ColumnName = "ITEM_ID")] public decimal? ItemId { get; set; } /// /// 物料编号 /// [SugarColumn(ColumnName = "ITEM_NO")] public string? ItemNo { get; set; } /// /// 申请数量 /// [SugarColumn(ColumnName = "SQ_NUM")] public decimal? SqNum { get; set; } /// /// 备注 /// [SugarColumn(ColumnName = "REMARK")] public string? Remark { get; set; } /// /// 项次 /// [SugarColumn(ColumnName = "LINE_NO")] public decimal? LineNo { get; set; } /// /// 调拨单号 /// [SugarColumn(ColumnName = "BILL_NO")] public string? BillNo { get; set; } /// /// 调出状态 /// [SugarColumn(ColumnName = "MOVE_OUT")] public decimal? MoveOut { get; set; } /// /// 调入状态 /// [SugarColumn(ColumnName = "MOVE_IN")] public decimal? MoveIn { 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; } /// /// 单位 /// [SugarColumn(ColumnName = "ITEM_UNIT")] public decimal? ItemUnit { get; set; } /// /// 是否同步 /// [SugarColumn(ColumnName = "IS_TB")] public decimal? IsTb { get; set; } /// /// 调出货主类型 /// [SugarColumn(ColumnName = "FOWNERTYPEID")] public string? FOwnerTypeId { get; set; } /// /// 调出货主 /// [SugarColumn(ColumnName = "FOWNERID")] public string? FOwnerId { get; set; } /// /// 调出仓库 /// [SugarColumn(ColumnName = "FSTOCKID")] public string? FStockId { get; set; } /// /// 调入货主类型 /// [SugarColumn(ColumnName = "FOWNERTYPEINID")] public string? FOwnerTypeInId { get; set; } /// /// 调入货主 /// [SugarColumn(ColumnName = "FOWNERINID")] public string? FOwnerInId { get; set; } /// /// 调入仓库 /// [SugarColumn(ColumnName = "FSTOCKINID")] public string? FStockInId { get; set; } /// /// 调出组织 /// [SugarColumn(ColumnName = "FSTOCKORGID")] public decimal? FStockOrgId { get; set; } /// /// 调入组织 /// [SugarColumn(ColumnName = "FSTOCKORGINID")] public decimal? FStockOrgInId { get; set; } /// /// 调出批号 /// [SugarColumn(ColumnName = "FLOT")] public string? FLot { get; set; } /// /// 计划跟踪号 /// [SugarColumn(ColumnName = "FMTONO")] public string? FMtono { get; set; } /// /// 调拨出库行id /// [SugarColumn(ColumnName = "ERPID")] public decimal? ErpId { get; set; } }