20250603 排产计划

This commit is contained in:
2025-06-03 11:26:24 +08:00
parent da1100c508
commit 5d4dddd465
7 changed files with 433 additions and 115 deletions
+162 -1
View File
@@ -6857,6 +6857,14 @@ namespace Model
}
}
public System.Data.Linq.Table<View_HJGL_ProductionSchedulingPlanStatistics> View_HJGL_ProductionSchedulingPlanStatistics
{
get
{
return this.GetTable<View_HJGL_ProductionSchedulingPlanStatistics>();
}
}
public System.Data.Linq.Table<View_HJGL_WeldingTask> View_HJGL_WeldingTask
{
get
@@ -100308,7 +100316,7 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_TotalPriority", DbType="NVarChar(50) NOT NULL", CanBeNull=false)]
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_TotalPriority", DbType="NVarChar(50)")]
public string TotalPriority
{
get
@@ -286333,6 +286341,159 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.View_HJGL_ProductionSchedulingPlanStatistics")]
public partial class View_HJGL_ProductionSchedulingPlanStatistics
{
private string _UnitWorkId;
private string _UnitWorkCode;
private string _UnitWorkName;
private string _ProjectId;
private string _FlowingSection;
private string _Material;
private string _Caliber;
private decimal _Dia;
public View_HJGL_ProductionSchedulingPlanStatistics()
{
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UnitWorkId", DbType="NVarChar(50) NOT NULL", CanBeNull=false)]
public string UnitWorkId
{
get
{
return this._UnitWorkId;
}
set
{
if ((this._UnitWorkId != value))
{
this._UnitWorkId = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UnitWorkCode", DbType="NVarChar(10)")]
public string UnitWorkCode
{
get
{
return this._UnitWorkCode;
}
set
{
if ((this._UnitWorkCode != value))
{
this._UnitWorkCode = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UnitWorkName", DbType="NVarChar(30)")]
public string UnitWorkName
{
get
{
return this._UnitWorkName;
}
set
{
if ((this._UnitWorkName != value))
{
this._UnitWorkName = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProjectId", DbType="NVarChar(50)")]
public string ProjectId
{
get
{
return this._ProjectId;
}
set
{
if ((this._ProjectId != value))
{
this._ProjectId = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_FlowingSection", DbType="NVarChar(200)")]
public string FlowingSection
{
get
{
return this._FlowingSection;
}
set
{
if ((this._FlowingSection != value))
{
this._FlowingSection = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Material", DbType="VarChar(8)")]
public string Material
{
get
{
return this._Material;
}
set
{
if ((this._Material != value))
{
this._Material = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Caliber", DbType="VarChar(5) NOT NULL", CanBeNull=false)]
public string Caliber
{
get
{
return this._Caliber;
}
set
{
if ((this._Caliber != value))
{
this._Caliber = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Dia", DbType="Decimal(38,3) NOT NULL")]
public decimal Dia
{
get
{
return this._Dia;
}
set
{
if ((this._Dia != value))
{
this._Dia = value;
}
}
}
}
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.View_HJGL_WeldingTask")]
public partial class View_HJGL_WeldingTask
{