0414-001
This commit is contained in:
+160
-4
@@ -65718,6 +65718,8 @@ namespace Model
|
||||
|
||||
private string _CheckManIds;
|
||||
|
||||
private string _CNProfessionalId;
|
||||
|
||||
private EntityRef<Base_Project> _Base_Project;
|
||||
|
||||
private EntityRef<Base_Unit> _Base_Unit;
|
||||
@@ -65820,6 +65822,8 @@ namespace Model
|
||||
partial void OnStatesChanged();
|
||||
partial void OnCheckManIdsChanging(string value);
|
||||
partial void OnCheckManIdsChanged();
|
||||
partial void OnCNProfessionalIdChanging(string value);
|
||||
partial void OnCNProfessionalIdChanged();
|
||||
#endregion
|
||||
|
||||
public Check_RectifyNotices()
|
||||
@@ -66619,6 +66623,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CNProfessionalId", DbType="NVarChar(50)")]
|
||||
public string CNProfessionalId
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._CNProfessionalId;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._CNProfessionalId != value))
|
||||
{
|
||||
this.OnCNProfessionalIdChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._CNProfessionalId = value;
|
||||
this.SendPropertyChanged("CNProfessionalId");
|
||||
this.OnCNProfessionalIdChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Check_RectifyNotices_Base_Project", Storage="_Base_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true)]
|
||||
public Base_Project Base_Project
|
||||
{
|
||||
@@ -110435,6 +110459,10 @@ namespace Model
|
||||
|
||||
private string _PlanId;
|
||||
|
||||
private string _CNProfessionalId;
|
||||
|
||||
private string _UnitWorkIds;
|
||||
|
||||
private EntitySet<EduTrain_TrainRecordDetail> _EduTrain_TrainRecordDetail;
|
||||
|
||||
private EntityRef<Base_Project> _Base_Project;
|
||||
@@ -110493,6 +110521,10 @@ namespace Model
|
||||
partial void OnWorkPostIdsChanged();
|
||||
partial void OnPlanIdChanging(string value);
|
||||
partial void OnPlanIdChanged();
|
||||
partial void OnCNProfessionalIdChanging(string value);
|
||||
partial void OnCNProfessionalIdChanged();
|
||||
partial void OnUnitWorkIdsChanging(string value);
|
||||
partial void OnUnitWorkIdsChanged();
|
||||
#endregion
|
||||
|
||||
public EduTrain_TrainRecord()
|
||||
@@ -110942,6 +110974,46 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CNProfessionalId", DbType="NVarChar(50)")]
|
||||
public string CNProfessionalId
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._CNProfessionalId;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._CNProfessionalId != value))
|
||||
{
|
||||
this.OnCNProfessionalIdChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._CNProfessionalId = value;
|
||||
this.SendPropertyChanged("CNProfessionalId");
|
||||
this.OnCNProfessionalIdChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UnitWorkIds", DbType="NVarChar(500)")]
|
||||
public string UnitWorkIds
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._UnitWorkIds;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._UnitWorkIds != value))
|
||||
{
|
||||
this.OnUnitWorkIdsChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._UnitWorkIds = value;
|
||||
this.SendPropertyChanged("UnitWorkIds");
|
||||
this.OnUnitWorkIdsChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_EduTrain_TrainDetail_EduTrain_Training", Storage="_EduTrain_TrainRecordDetail", ThisKey="TrainingId", OtherKey="TrainingId", DeleteRule="NO ACTION")]
|
||||
public EntitySet<EduTrain_TrainRecordDetail> EduTrain_TrainRecordDetail
|
||||
{
|
||||
@@ -170318,6 +170390,8 @@ namespace Model
|
||||
|
||||
private string _WorkStates;
|
||||
|
||||
private string _CNProfessionalId;
|
||||
|
||||
private EntityRef<Base_LicenseType> _Base_LicenseType;
|
||||
|
||||
private EntityRef<Base_Project> _Base_Project;
|
||||
@@ -170360,6 +170434,8 @@ namespace Model
|
||||
partial void OnApplicantManChanged();
|
||||
partial void OnWorkStatesChanging(string value);
|
||||
partial void OnWorkStatesChanged();
|
||||
partial void OnCNProfessionalIdChanging(string value);
|
||||
partial void OnCNProfessionalIdChanged();
|
||||
#endregion
|
||||
|
||||
public License_LicenseManager()
|
||||
@@ -170687,6 +170763,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CNProfessionalId", DbType="NVarChar(50)")]
|
||||
public string CNProfessionalId
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._CNProfessionalId;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._CNProfessionalId != value))
|
||||
{
|
||||
this.OnCNProfessionalIdChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._CNProfessionalId = value;
|
||||
this.SendPropertyChanged("CNProfessionalId");
|
||||
this.OnCNProfessionalIdChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_License_LicenseManager_Base_LicenseType", Storage="_Base_LicenseType", ThisKey="LicenseTypeId", OtherKey="LicenseTypeId", IsForeignKey=true)]
|
||||
public Base_LicenseType Base_LicenseType
|
||||
{
|
||||
@@ -253001,7 +253097,7 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Address", DbType="NVarChar(2000)")]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Address", DbType="NVarChar(200)")]
|
||||
public string Address
|
||||
{
|
||||
get
|
||||
@@ -253065,7 +253161,7 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkAreaName", DbType="NVarChar(MAX)", UpdateCheck=UpdateCheck.Never)]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkAreaName", DbType="NVarChar(200)")]
|
||||
public string WorkAreaName
|
||||
{
|
||||
get
|
||||
@@ -270472,6 +270568,8 @@ namespace Model
|
||||
|
||||
private System.Nullable<bool> _IsAuditFlow;
|
||||
|
||||
private string _CNProfessionalIds;
|
||||
|
||||
private EntitySet<Person_QuarterCheck> _Person_QuarterCheck;
|
||||
|
||||
private EntitySet<Sys_ButtonPower> _Sys_ButtonPower;
|
||||
@@ -270498,6 +270596,8 @@ namespace Model
|
||||
partial void OnRoleTypeChanged();
|
||||
partial void OnIsAuditFlowChanging(System.Nullable<bool> value);
|
||||
partial void OnIsAuditFlowChanged();
|
||||
partial void OnCNProfessionalIdsChanging(string value);
|
||||
partial void OnCNProfessionalIdsChanged();
|
||||
#endregion
|
||||
|
||||
public Sys_Role()
|
||||
@@ -270668,6 +270768,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CNProfessionalIds", DbType="NVarChar(500)")]
|
||||
public string CNProfessionalIds
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._CNProfessionalIds;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._CNProfessionalIds != value))
|
||||
{
|
||||
this.OnCNProfessionalIdsChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._CNProfessionalIds = value;
|
||||
this.SendPropertyChanged("CNProfessionalIds");
|
||||
this.OnCNProfessionalIdsChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Person_QuarterCheck_Sys_Role", Storage="_Person_QuarterCheck", ThisKey="RoleId", OtherKey="RoleId", DeleteRule="NO ACTION")]
|
||||
public EntitySet<Person_QuarterCheck> Person_QuarterCheck
|
||||
{
|
||||
@@ -329368,6 +329488,10 @@ namespace Model
|
||||
|
||||
private System.Nullable<System.DateTime> _CompileDate;
|
||||
|
||||
private string _CNProfessionalId;
|
||||
|
||||
private string _ProfessionalName;
|
||||
|
||||
private string _States;
|
||||
|
||||
private string _ProjectCode;
|
||||
@@ -329538,6 +329662,38 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CNProfessionalId", DbType="NVarChar(50)")]
|
||||
public string CNProfessionalId
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._CNProfessionalId;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._CNProfessionalId != value))
|
||||
{
|
||||
this._CNProfessionalId = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProfessionalName", DbType="NVarChar(30)")]
|
||||
public string ProfessionalName
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._ProfessionalName;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._ProfessionalName != value))
|
||||
{
|
||||
this._ProfessionalName = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_States", DbType="Char(1)")]
|
||||
public string States
|
||||
{
|
||||
@@ -334874,7 +335030,7 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Address", DbType="NVarChar(2000)")]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Address", DbType="NVarChar(200)")]
|
||||
public string Address
|
||||
{
|
||||
get
|
||||
@@ -334890,7 +335046,7 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkAreaName", DbType="NVarChar(MAX)", UpdateCheck=UpdateCheck.Never)]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkAreaName", DbType="NVarChar(200)")]
|
||||
public string WorkAreaName
|
||||
{
|
||||
get
|
||||
|
||||
Reference in New Issue
Block a user