20241010
This commit is contained in:
+93
-42
@@ -29,11 +29,7 @@ namespace Model
|
||||
|
||||
#region 可扩展性方法定义
|
||||
partial void OnCreated();
|
||||
partial void OnCreated()
|
||||
{
|
||||
this.CommandTimeout = 600;
|
||||
}
|
||||
partial void InsertAttachFile(AttachFile instance);
|
||||
partial void InsertAttachFile(AttachFile instance);
|
||||
partial void UpdateAttachFile(AttachFile instance);
|
||||
partial void DeleteAttachFile(AttachFile instance);
|
||||
partial void InsertAudiFlow(AudiFlow instance);
|
||||
@@ -456,14 +452,6 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
public System.Data.Linq.Table<OriginDatas> OriginDatas
|
||||
{
|
||||
get
|
||||
{
|
||||
return this.GetTable<OriginDatas>();
|
||||
}
|
||||
}
|
||||
|
||||
public System.Data.Linq.Table<Resource_Plan> Resource_Plan
|
||||
{
|
||||
get
|
||||
@@ -1345,6 +1333,8 @@ namespace Model
|
||||
|
||||
private string _GroupId;
|
||||
|
||||
private string _GroupType;
|
||||
|
||||
private EntitySet<Editor_AreaConcern> _Editor_AreaConcern;
|
||||
|
||||
private EntitySet<Editor_FCRLog> _Editor_FCRLog;
|
||||
@@ -1369,6 +1359,8 @@ namespace Model
|
||||
partial void OnConstTextChanged();
|
||||
partial void OnGroupIdChanging(string value);
|
||||
partial void OnGroupIdChanged();
|
||||
partial void OnGroupTypeChanging(string value);
|
||||
partial void OnGroupTypeChanged();
|
||||
#endregion
|
||||
|
||||
public Base_Const()
|
||||
@@ -1462,6 +1454,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_GroupType", DbType="NVarChar(10)")]
|
||||
public string GroupType
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._GroupType;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._GroupType != value))
|
||||
{
|
||||
this.OnGroupTypeChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._GroupType = value;
|
||||
this.SendPropertyChanged("GroupType");
|
||||
this.OnGroupTypeChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Editor_AreaConcern_Base_Const", Storage="_Editor_AreaConcern", ThisKey="ConstId", OtherKey="CategoryCauseId", DeleteRule="NO ACTION")]
|
||||
public EntitySet<Editor_AreaConcern> Editor_AreaConcern
|
||||
{
|
||||
@@ -5664,6 +5676,8 @@ namespace Model
|
||||
|
||||
private System.Nullable<System.DateTime> _PM_Pre_Approval;
|
||||
|
||||
private string _ProjectControl_ProjectType;
|
||||
|
||||
private EntitySet<Design_Input> _Design_Input;
|
||||
|
||||
private EntitySet<Editor_AreaConcern> _Editor_AreaConcern;
|
||||
@@ -6096,6 +6110,8 @@ namespace Model
|
||||
partial void OnPM_Planning_ApprovalChanged();
|
||||
partial void OnPM_Pre_ApprovalChanging(System.Nullable<System.DateTime> value);
|
||||
partial void OnPM_Pre_ApprovalChanged();
|
||||
partial void OnProjectControl_ProjectTypeChanging(string value);
|
||||
partial void OnProjectControl_ProjectTypeChanged();
|
||||
#endregion
|
||||
|
||||
public Editor_EProject()
|
||||
@@ -10155,6 +10171,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProjectControl_ProjectType", DbType="NVarChar(20)")]
|
||||
public string ProjectControl_ProjectType
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._ProjectControl_ProjectType;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._ProjectControl_ProjectType != value))
|
||||
{
|
||||
this.OnProjectControl_ProjectTypeChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._ProjectControl_ProjectType = value;
|
||||
this.SendPropertyChanged("ProjectControl_ProjectType");
|
||||
this.OnProjectControl_ProjectTypeChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Design_Input_Editor_EProject", Storage="_Design_Input", ThisKey="EProjectId", OtherKey="EProjectId", DeleteRule="NO ACTION")]
|
||||
public EntitySet<Design_Input> Design_Input
|
||||
{
|
||||
@@ -16574,33 +16610,6 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.OriginDatas")]
|
||||
public partial class OriginDatas
|
||||
{
|
||||
|
||||
private string _JsonData;
|
||||
|
||||
public OriginDatas()
|
||||
{
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="jsonData", Storage="_JsonData", DbType="Text", UpdateCheck=UpdateCheck.Never)]
|
||||
public string JsonData
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._JsonData;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._JsonData != value))
|
||||
{
|
||||
this._JsonData = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.Resource_Plan")]
|
||||
public partial class Resource_Plan : INotifyPropertyChanging, INotifyPropertyChanged
|
||||
{
|
||||
@@ -18160,6 +18169,8 @@ namespace Model
|
||||
|
||||
private string _Remark;
|
||||
|
||||
private string _Josn;
|
||||
|
||||
#region 可扩展性方法定义
|
||||
partial void OnLoaded();
|
||||
partial void OnValidate(System.Data.Linq.ChangeAction action);
|
||||
@@ -18180,6 +18191,8 @@ namespace Model
|
||||
partial void OnIsSuccessChanged();
|
||||
partial void OnRemarkChanging(string value);
|
||||
partial void OnRemarkChanged();
|
||||
partial void OnJosnChanging(string value);
|
||||
partial void OnJosnChanged();
|
||||
#endregion
|
||||
|
||||
public SyncDataUserLogs()
|
||||
@@ -18347,6 +18360,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Josn", DbType="NVarChar(MAX)", UpdateCheck=UpdateCheck.Never)]
|
||||
public string Josn
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Josn;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Josn != value))
|
||||
{
|
||||
this.OnJosnChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._Josn = value;
|
||||
this.SendPropertyChanged("Josn");
|
||||
this.OnJosnChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public event PropertyChangingEventHandler PropertyChanging;
|
||||
|
||||
public event PropertyChangedEventHandler PropertyChanged;
|
||||
@@ -22363,7 +22396,7 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Create_by", DbType="NVarChar(50)")]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Create_by", DbType="NVarChar(20)")]
|
||||
public string Create_by
|
||||
{
|
||||
get
|
||||
@@ -22395,7 +22428,7 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Update_by", DbType="NVarChar(50)")]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Update_by", DbType="NVarChar(20)")]
|
||||
public string Update_by
|
||||
{
|
||||
get
|
||||
@@ -27741,6 +27774,8 @@ namespace Model
|
||||
|
||||
private decimal _OrginalBudget;
|
||||
|
||||
private string _ProjectControl_ProjectType;
|
||||
|
||||
private System.Nullable<decimal> _ChangedBudget;
|
||||
|
||||
private System.Nullable<decimal> _CostToComplete;
|
||||
@@ -27997,6 +28032,22 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProjectControl_ProjectType", DbType="NVarChar(20)")]
|
||||
public string ProjectControl_ProjectType
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._ProjectControl_ProjectType;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._ProjectControl_ProjectType != value))
|
||||
{
|
||||
this._ProjectControl_ProjectType = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ChangedBudget", DbType="Decimal(18,2)")]
|
||||
public System.Nullable<decimal> ChangedBudget
|
||||
{
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user