PMP项目数据对接;邮箱测试
This commit is contained in:
@@ -26719,6 +26719,18 @@ namespace Model
|
||||
|
||||
private System.Nullable<bool> _IsDelete;
|
||||
|
||||
private string _ProjectNameEn;
|
||||
|
||||
private string _StClientName;
|
||||
|
||||
private string _ClientContactor;
|
||||
|
||||
private string _MobileTel;
|
||||
|
||||
private System.Nullable<System.DateTime> _PlanStartDate;
|
||||
|
||||
private System.Nullable<System.DateTime> _PlanEndDate;
|
||||
|
||||
private EntitySet<Accident_AccidentHandle> _Accident_AccidentHandle;
|
||||
|
||||
private EntitySet<Accident_AccidentPersonRecord> _Accident_AccidentPersonRecord;
|
||||
@@ -27425,6 +27437,18 @@ namespace Model
|
||||
partial void OnMasterSysIdChanged();
|
||||
partial void OnIsDeleteChanging(System.Nullable<bool> value);
|
||||
partial void OnIsDeleteChanged();
|
||||
partial void OnProjectNameEnChanging(string value);
|
||||
partial void OnProjectNameEnChanged();
|
||||
partial void OnStClientNameChanging(string value);
|
||||
partial void OnStClientNameChanged();
|
||||
partial void OnClientContactorChanging(string value);
|
||||
partial void OnClientContactorChanged();
|
||||
partial void OnMobileTelChanging(string value);
|
||||
partial void OnMobileTelChanged();
|
||||
partial void OnPlanStartDateChanging(System.Nullable<System.DateTime> value);
|
||||
partial void OnPlanStartDateChanged();
|
||||
partial void OnPlanEndDateChanging(System.Nullable<System.DateTime> value);
|
||||
partial void OnPlanEndDateChanged();
|
||||
#endregion
|
||||
|
||||
public Base_Project()
|
||||
@@ -28589,6 +28613,126 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProjectNameEn", DbType="NVarChar(500)")]
|
||||
public string ProjectNameEn
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._ProjectNameEn;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._ProjectNameEn != value))
|
||||
{
|
||||
this.OnProjectNameEnChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._ProjectNameEn = value;
|
||||
this.SendPropertyChanged("ProjectNameEn");
|
||||
this.OnProjectNameEnChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_StClientName", DbType="NVarChar(200)")]
|
||||
public string StClientName
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._StClientName;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._StClientName != value))
|
||||
{
|
||||
this.OnStClientNameChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._StClientName = value;
|
||||
this.SendPropertyChanged("StClientName");
|
||||
this.OnStClientNameChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ClientContactor", DbType="NVarChar(200)")]
|
||||
public string ClientContactor
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._ClientContactor;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._ClientContactor != value))
|
||||
{
|
||||
this.OnClientContactorChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._ClientContactor = value;
|
||||
this.SendPropertyChanged("ClientContactor");
|
||||
this.OnClientContactorChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MobileTel", DbType="NVarChar(200)")]
|
||||
public string MobileTel
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._MobileTel;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._MobileTel != value))
|
||||
{
|
||||
this.OnMobileTelChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._MobileTel = value;
|
||||
this.SendPropertyChanged("MobileTel");
|
||||
this.OnMobileTelChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PlanStartDate", DbType="DateTime")]
|
||||
public System.Nullable<System.DateTime> PlanStartDate
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._PlanStartDate;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._PlanStartDate != value))
|
||||
{
|
||||
this.OnPlanStartDateChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._PlanStartDate = value;
|
||||
this.SendPropertyChanged("PlanStartDate");
|
||||
this.OnPlanStartDateChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PlanEndDate", DbType="DateTime")]
|
||||
public System.Nullable<System.DateTime> PlanEndDate
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._PlanEndDate;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._PlanEndDate != value))
|
||||
{
|
||||
this.OnPlanEndDateChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._PlanEndDate = value;
|
||||
this.SendPropertyChanged("PlanEndDate");
|
||||
this.OnPlanEndDateChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Accident_AccidentHandle_Base_Project", Storage="_Accident_AccidentHandle", ThisKey="ProjectId", OtherKey="ProjectId", DeleteRule="NO ACTION")]
|
||||
public EntitySet<Accident_AccidentHandle> Accident_AccidentHandle
|
||||
{
|
||||
@@ -284393,6 +284537,18 @@ namespace Model
|
||||
|
||||
private System.DateTime _CreateTime;
|
||||
|
||||
private string _StClientName;
|
||||
|
||||
private string _ClientContactor;
|
||||
|
||||
private string _MobileTel;
|
||||
|
||||
private System.Nullable<System.DateTime> _PlanStartDate;
|
||||
|
||||
private System.Nullable<System.DateTime> _PlanEndDate;
|
||||
|
||||
private string _StLocationName;
|
||||
|
||||
#region 可扩展性方法定义
|
||||
partial void OnLoaded();
|
||||
partial void OnValidate(System.Data.Linq.ChangeAction action);
|
||||
@@ -284453,6 +284609,18 @@ namespace Model
|
||||
partial void OnRealEndDateChanged();
|
||||
partial void OnCreateTimeChanging(System.DateTime value);
|
||||
partial void OnCreateTimeChanged();
|
||||
partial void OnStClientNameChanging(string value);
|
||||
partial void OnStClientNameChanged();
|
||||
partial void OnClientContactorChanging(string value);
|
||||
partial void OnClientContactorChanged();
|
||||
partial void OnMobileTelChanging(string value);
|
||||
partial void OnMobileTelChanged();
|
||||
partial void OnPlanStartDateChanging(System.Nullable<System.DateTime> value);
|
||||
partial void OnPlanStartDateChanged();
|
||||
partial void OnPlanEndDateChanging(System.Nullable<System.DateTime> value);
|
||||
partial void OnPlanEndDateChanged();
|
||||
partial void OnStLocationNameChanging(string value);
|
||||
partial void OnStLocationNameChanged();
|
||||
#endregion
|
||||
|
||||
public PMP_Project()
|
||||
@@ -285020,6 +285188,126 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="stClientName", Storage="_StClientName", DbType="NVarChar(200)")]
|
||||
public string StClientName
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._StClientName;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._StClientName != value))
|
||||
{
|
||||
this.OnStClientNameChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._StClientName = value;
|
||||
this.SendPropertyChanged("StClientName");
|
||||
this.OnStClientNameChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="clientContactor", Storage="_ClientContactor", DbType="NVarChar(200)")]
|
||||
public string ClientContactor
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._ClientContactor;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._ClientContactor != value))
|
||||
{
|
||||
this.OnClientContactorChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._ClientContactor = value;
|
||||
this.SendPropertyChanged("ClientContactor");
|
||||
this.OnClientContactorChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="mobileTel", Storage="_MobileTel", DbType="NVarChar(200)")]
|
||||
public string MobileTel
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._MobileTel;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._MobileTel != value))
|
||||
{
|
||||
this.OnMobileTelChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._MobileTel = value;
|
||||
this.SendPropertyChanged("MobileTel");
|
||||
this.OnMobileTelChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="planStartDate", Storage="_PlanStartDate", DbType="DateTime")]
|
||||
public System.Nullable<System.DateTime> PlanStartDate
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._PlanStartDate;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._PlanStartDate != value))
|
||||
{
|
||||
this.OnPlanStartDateChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._PlanStartDate = value;
|
||||
this.SendPropertyChanged("PlanStartDate");
|
||||
this.OnPlanStartDateChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="planEndDate", Storage="_PlanEndDate", DbType="DateTime")]
|
||||
public System.Nullable<System.DateTime> PlanEndDate
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._PlanEndDate;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._PlanEndDate != value))
|
||||
{
|
||||
this.OnPlanEndDateChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._PlanEndDate = value;
|
||||
this.SendPropertyChanged("PlanEndDate");
|
||||
this.OnPlanEndDateChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="stLocationName", Storage="_StLocationName", DbType="NVarChar(20)")]
|
||||
public string StLocationName
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._StLocationName;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._StLocationName != value))
|
||||
{
|
||||
this.OnStLocationNameChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._StLocationName = value;
|
||||
this.SendPropertyChanged("StLocationName");
|
||||
this.OnStLocationNameChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public event PropertyChangingEventHandler PropertyChanging;
|
||||
|
||||
public event PropertyChangedEventHandler PropertyChanged;
|
||||
|
||||
Reference in New Issue
Block a user