using SqlSugar; namespace MES.Service.Modes; /// /// 组织需求表 /// [SugarTable("MES_INV_ORGDAMAND")] public class MesInvOrgdamand { /// /// 主键ID /// [SugarColumn(ColumnName = "ID", IsPrimaryKey = true)] public decimal? Id { get; set; } /// /// [SugarColumn(ColumnName = "BILL_NO")] public string? BillNo { get; set; } /// /// 单据类型 /// [SugarColumn(ColumnName = "FBILLTYPEID")] public string? Fbilltypeid { get; set; } /// /// 单据编号 /// [SugarColumn(ColumnName = "FBILLNO")] public string? Fbillno { get; set; } /// /// 单据状态 /// [SugarColumn(ColumnName = "Type")] public string? Type { get; set; } /// /// 物料编码 /// [SugarColumn(ColumnName = "FMATERIALID")] public string? Fmaterialid { get; set; } /// /// 物料名称 /// [SugarColumn(ColumnName = "FMATERIALNAME")] public string? Fmaterialname { get; set; } /// /// 单位 /// [SugarColumn(ColumnName = "FUNITID")] public string Funitid { get; set; } /// /// 需求发出组织 /// [SugarColumn(ColumnName = "FDEMANDORGID")] public string? Fdemandorgid { get; set; } /// /// 需求接收组织 /// [SugarColumn(ColumnName = "FSUPPLYORGID")] public string? Fsupplyorgid { get; set; } /// /// 确认订单量 /// [SugarColumn(ColumnName = "FFIRMQTY")] public decimal? Ffirmqty { get; set; } /// /// 计划跟踪号 /// [SugarColumn(ColumnName = "FMTONO")] public string? Fmtono { get; set; } /// /// 剩余需求数量 /// [SugarColumn(ColumnName = "REMAINQTY")] public decimal? Remainqty { get; set; } /// /// 需求单据编号 /// [SugarColumn(ColumnName = "FSALEORDERNO")] public string? Fsaleorderno { get; set; } /// /// 需求单据行号 /// [SugarColumn(ColumnName = "FSALEORDERENTRYSEQ")] public string? Fsaleorderentryseq { get; set; } /// /// 销售订单号 /// [SugarColumn(ColumnName = "F_XIFG_TEXT_RE5")] public string? FXifgTextRe5 { get; set; } /// /// 销售订单行号 /// [SugarColumn(ColumnName = "F_XIFG_INTEGER_TZK")] public string? FXifgIntegerTzk { get; set; } /// /// 禁用标识 /// [SugarColumn(ColumnName = "Fforbidstatus")] public string? Fforbidstatus { get; set; } }