feat(clgl): 增加入库申请编辑与明细导入
支持入库申请信息维护、入库明细批量导入及模板下载, 完善材料入库业务流程,减少人工录入和明细维护成本。 增加焊口流转区段信息,并统一相关单位工程列表排序
This commit is contained in:
+26
-1
@@ -1,4 +1,5 @@
|
||||
#pragma warning disable 1591
|
||||
|
||||
#pragma warning disable 1591
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// 此代码由工具生成。
|
||||
@@ -110922,6 +110923,8 @@ namespace Model
|
||||
|
||||
private System.Nullable<decimal> _Misalignment;
|
||||
|
||||
private string _FlowingSection;
|
||||
|
||||
private EntitySet<HJGL_Hard_Report> _HJGL_Hard_Report;
|
||||
|
||||
private EntitySet<HJGL_Hard_TrustItem> _HJGL_Hard_TrustItem;
|
||||
@@ -111080,6 +111083,8 @@ namespace Model
|
||||
partial void OnFitupGapChanged();
|
||||
partial void OnMisalignmentChanging(System.Nullable<decimal> value);
|
||||
partial void OnMisalignmentChanged();
|
||||
partial void OnFlowingSectionChanging(string value);
|
||||
partial void OnFlowingSectionChanged();
|
||||
#endregion
|
||||
|
||||
public HJGL_WeldJoint()
|
||||
@@ -112345,6 +112350,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_FlowingSection", DbType="NVarChar(200)")]
|
||||
public string FlowingSection
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._FlowingSection;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._FlowingSection != value))
|
||||
{
|
||||
this.OnFlowingSectionChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._FlowingSection = value;
|
||||
this.SendPropertyChanged("FlowingSection");
|
||||
this.OnFlowingSectionChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_HJGL_Hard_Report_HJGL_WeldJoint", Storage="_HJGL_Hard_Report", ThisKey="WeldJointId", OtherKey="WeldJointId", DeleteRule="NO ACTION")]
|
||||
public EntitySet<HJGL_Hard_Report> HJGL_Hard_Report
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user