1
This commit is contained in:
@@ -0,0 +1,6 @@
|
|||||||
|
Alter TABLE [dbo].HJGL_WeldJoint add
|
||||||
|
[AttachSourceId] [nvarchar](50) NULL,
|
||||||
|
[x] [nvarchar](50) NULL,
|
||||||
|
[y] [nvarchar](50) NULL,
|
||||||
|
[x2] [nvarchar](50) NULL,
|
||||||
|
[y2] [nvarchar] (50) NULL
|
||||||
+121
-1
@@ -108926,6 +108926,16 @@ namespace Model
|
|||||||
|
|
||||||
private string _WeldJointPoint;
|
private string _WeldJointPoint;
|
||||||
|
|
||||||
|
private string _AttachSourceId;
|
||||||
|
|
||||||
|
private string _X;
|
||||||
|
|
||||||
|
private string _Y;
|
||||||
|
|
||||||
|
private string _X2;
|
||||||
|
|
||||||
|
private string _Y2;
|
||||||
|
|
||||||
private EntitySet<HJGL_Batch_BatchTrustItem> _HJGL_Batch_BatchTrustItem;
|
private EntitySet<HJGL_Batch_BatchTrustItem> _HJGL_Batch_BatchTrustItem;
|
||||||
|
|
||||||
private EntitySet<HJGL_Batch_PointBatchItem> _HJGL_Batch_PointBatchItem;
|
private EntitySet<HJGL_Batch_PointBatchItem> _HJGL_Batch_PointBatchItem;
|
||||||
@@ -109074,6 +109084,16 @@ namespace Model
|
|||||||
partial void OnCoverWelderTeamGroupIdChanged();
|
partial void OnCoverWelderTeamGroupIdChanged();
|
||||||
partial void OnWeldJointPointChanging(string value);
|
partial void OnWeldJointPointChanging(string value);
|
||||||
partial void OnWeldJointPointChanged();
|
partial void OnWeldJointPointChanged();
|
||||||
|
partial void OnAttachSourceIdChanging(string value);
|
||||||
|
partial void OnAttachSourceIdChanged();
|
||||||
|
partial void OnXChanging(string value);
|
||||||
|
partial void OnXChanged();
|
||||||
|
partial void OnYChanging(string value);
|
||||||
|
partial void OnYChanged();
|
||||||
|
partial void OnX2Changing(string value);
|
||||||
|
partial void OnX2Changed();
|
||||||
|
partial void OnY2Changing(string value);
|
||||||
|
partial void OnY2Changed();
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
public HJGL_WeldJoint()
|
public HJGL_WeldJoint()
|
||||||
@@ -110163,6 +110183,106 @@ namespace Model
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AttachSourceId", DbType="NVarChar(50)")]
|
||||||
|
public string AttachSourceId
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return this._AttachSourceId;
|
||||||
|
}
|
||||||
|
set
|
||||||
|
{
|
||||||
|
if ((this._AttachSourceId != value))
|
||||||
|
{
|
||||||
|
this.OnAttachSourceIdChanging(value);
|
||||||
|
this.SendPropertyChanging();
|
||||||
|
this._AttachSourceId = value;
|
||||||
|
this.SendPropertyChanged("AttachSourceId");
|
||||||
|
this.OnAttachSourceIdChanged();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="x", Storage="_X", DbType="NVarChar(50)")]
|
||||||
|
public string X
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return this._X;
|
||||||
|
}
|
||||||
|
set
|
||||||
|
{
|
||||||
|
if ((this._X != value))
|
||||||
|
{
|
||||||
|
this.OnXChanging(value);
|
||||||
|
this.SendPropertyChanging();
|
||||||
|
this._X = value;
|
||||||
|
this.SendPropertyChanged("X");
|
||||||
|
this.OnXChanged();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="y", Storage="_Y", DbType="NVarChar(50)")]
|
||||||
|
public string Y
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return this._Y;
|
||||||
|
}
|
||||||
|
set
|
||||||
|
{
|
||||||
|
if ((this._Y != value))
|
||||||
|
{
|
||||||
|
this.OnYChanging(value);
|
||||||
|
this.SendPropertyChanging();
|
||||||
|
this._Y = value;
|
||||||
|
this.SendPropertyChanged("Y");
|
||||||
|
this.OnYChanged();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="x2", Storage="_X2", DbType="NVarChar(50)")]
|
||||||
|
public string X2
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return this._X2;
|
||||||
|
}
|
||||||
|
set
|
||||||
|
{
|
||||||
|
if ((this._X2 != value))
|
||||||
|
{
|
||||||
|
this.OnX2Changing(value);
|
||||||
|
this.SendPropertyChanging();
|
||||||
|
this._X2 = value;
|
||||||
|
this.SendPropertyChanged("X2");
|
||||||
|
this.OnX2Changed();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="y2", Storage="_Y2", DbType="NVarChar(50)")]
|
||||||
|
public string Y2
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return this._Y2;
|
||||||
|
}
|
||||||
|
set
|
||||||
|
{
|
||||||
|
if ((this._Y2 != value))
|
||||||
|
{
|
||||||
|
this.OnY2Changing(value);
|
||||||
|
this.SendPropertyChanging();
|
||||||
|
this._Y2 = value;
|
||||||
|
this.SendPropertyChanged("Y2");
|
||||||
|
this.OnY2Changed();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_HJGL_Batch_BatchTrustItem_HJGL_WeldJoint", Storage="_HJGL_Batch_BatchTrustItem", ThisKey="WeldJointId", OtherKey="WeldJointId", DeleteRule="NO ACTION")]
|
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_HJGL_Batch_BatchTrustItem_HJGL_WeldJoint", Storage="_HJGL_Batch_BatchTrustItem", ThisKey="WeldJointId", OtherKey="WeldJointId", DeleteRule="NO ACTION")]
|
||||||
public EntitySet<HJGL_Batch_BatchTrustItem> HJGL_Batch_BatchTrustItem
|
public EntitySet<HJGL_Batch_BatchTrustItem> HJGL_Batch_BatchTrustItem
|
||||||
{
|
{
|
||||||
@@ -275753,7 +275873,7 @@ namespace Model
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MaterialCode", DbType="NVarChar(50)")]
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MaterialCode", DbType="NVarChar(300)")]
|
||||||
public string MaterialCode
|
public string MaterialCode
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
|
|||||||
Reference in New Issue
Block a user