新增管道颜色标识导入功能及API控制器
更新了多个服务和页面,增加了导入管道颜色标识数据的功能,并实现了包装管理、车次管理、管道组件和焊口信息的API控制器。修正了文件路径错误,优化了分页和排序逻辑,删除了不再使用的API方法。
This commit is contained in:
@@ -6921,6 +6921,14 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
public System.Data.Linq.Table<View_HJGL_InstallData> View_HJGL_InstallData
|
||||
{
|
||||
get
|
||||
{
|
||||
return this.GetTable<View_HJGL_InstallData>();
|
||||
}
|
||||
}
|
||||
|
||||
public System.Data.Linq.Table<View_HJGL_JointInfoQuery> View_HJGL_JointInfoQuery
|
||||
{
|
||||
get
|
||||
@@ -97820,6 +97828,8 @@ namespace Model
|
||||
|
||||
private System.Nullable<System.DateTime> _CompileDate;
|
||||
|
||||
private System.Nullable<int> _CategoryInt;
|
||||
|
||||
#region 可扩展性方法定义
|
||||
partial void OnLoaded();
|
||||
partial void OnValidate(System.Data.Linq.ChangeAction action);
|
||||
@@ -97856,6 +97866,8 @@ namespace Model
|
||||
partial void OnCompileManChanged();
|
||||
partial void OnCompileDateChanging(System.Nullable<System.DateTime> value);
|
||||
partial void OnCompileDateChanged();
|
||||
partial void OnCategoryIntChanging(System.Nullable<int> value);
|
||||
partial void OnCategoryIntChanged();
|
||||
#endregion
|
||||
|
||||
public HJGL_PackagingManage()
|
||||
@@ -98183,6 +98195,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CategoryInt", DbType="Int")]
|
||||
public System.Nullable<int> CategoryInt
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._CategoryInt;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._CategoryInt != value))
|
||||
{
|
||||
this.OnCategoryIntChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._CategoryInt = value;
|
||||
this.SendPropertyChanged("CategoryInt");
|
||||
this.OnCategoryIntChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public event PropertyChangingEventHandler PropertyChanging;
|
||||
|
||||
public event PropertyChangedEventHandler PropertyChanged;
|
||||
@@ -290556,6 +290588,213 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.View_HJGL_InstallData")]
|
||||
public partial class View_HJGL_InstallData
|
||||
{
|
||||
|
||||
private string _Id;
|
||||
|
||||
private string _PipelineCode;
|
||||
|
||||
private string _Code;
|
||||
|
||||
private string _TypeStr;
|
||||
|
||||
private string _Matdef;
|
||||
|
||||
private System.Nullable<decimal> _Number;
|
||||
|
||||
private string _PackagingCode;
|
||||
|
||||
private string _TrainNumber;
|
||||
|
||||
private string _FlowingSection;
|
||||
|
||||
private string _UnitWorkId;
|
||||
|
||||
private string _ProjectId;
|
||||
|
||||
public View_HJGL_InstallData()
|
||||
{
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Id", DbType="NVarChar(50) NOT NULL", CanBeNull=false)]
|
||||
public string Id
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Id;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Id != value))
|
||||
{
|
||||
this._Id = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PipelineCode", DbType="NVarChar(200)")]
|
||||
public string PipelineCode
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._PipelineCode;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._PipelineCode != value))
|
||||
{
|
||||
this._PipelineCode = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Code", DbType="NVarChar(50)")]
|
||||
public string Code
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Code;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Code != value))
|
||||
{
|
||||
this._Code = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_TypeStr", DbType="VarChar(8) NOT NULL", CanBeNull=false)]
|
||||
public string TypeStr
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._TypeStr;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._TypeStr != value))
|
||||
{
|
||||
this._TypeStr = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Matdef", DbType="NVarChar(MAX)", UpdateCheck=UpdateCheck.Never)]
|
||||
public string Matdef
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Matdef;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Matdef != value))
|
||||
{
|
||||
this._Matdef = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Number", DbType="Decimal(18,2)")]
|
||||
public System.Nullable<decimal> Number
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Number;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Number != value))
|
||||
{
|
||||
this._Number = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PackagingCode", DbType="NVarChar(50)")]
|
||||
public string PackagingCode
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._PackagingCode;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._PackagingCode != value))
|
||||
{
|
||||
this._PackagingCode = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_TrainNumber", DbType="NVarChar(50)")]
|
||||
public string TrainNumber
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._TrainNumber;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._TrainNumber != value))
|
||||
{
|
||||
this._TrainNumber = 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="_UnitWorkId", DbType="NVarChar(50)")]
|
||||
public string UnitWorkId
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._UnitWorkId;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._UnitWorkId != value))
|
||||
{
|
||||
this._UnitWorkId = 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.TableAttribute(Name="dbo.View_HJGL_JointInfoQuery")]
|
||||
public partial class View_HJGL_JointInfoQuery
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user