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;
|
||||
|
||||
@@ -115,6 +115,21 @@ namespace Model
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 项目OBS输出信息
|
||||
/// </summary>
|
||||
public partial class PMPOBSOutInput
|
||||
{
|
||||
/// <summary>
|
||||
/// 岗位专业名称
|
||||
/// </summary>
|
||||
public string workName { get; set; }
|
||||
/// <summary>
|
||||
/// 对应岗位专业任职人员名称
|
||||
/// </summary>
|
||||
public string userName { get; set; }
|
||||
}
|
||||
|
||||
|
||||
public partial class PMPOBSResponseData
|
||||
{
|
||||
|
||||
@@ -103,11 +103,16 @@ namespace Model
|
||||
[JsonProperty("stNum")]
|
||||
public string stNum { get; set; }
|
||||
/// <summary>
|
||||
/// 名称
|
||||
/// 项目名称
|
||||
/// </summary>
|
||||
[JsonProperty("name")]
|
||||
public string name { get; set; }
|
||||
/// <summary>
|
||||
/// 项目英文名称
|
||||
/// </summary>
|
||||
[JsonProperty("projectNameEn")]
|
||||
public string projectNameEn { get; set; }
|
||||
/// <summary>
|
||||
/// 项目简称
|
||||
/// </summary>
|
||||
[JsonProperty("projShortName")]
|
||||
@@ -123,22 +128,47 @@ namespace Model
|
||||
[JsonProperty("realEndDate")]
|
||||
public DateTime? realEndDate { get; set; }
|
||||
/// <summary>
|
||||
/// 计划开始日期
|
||||
/// </summary>
|
||||
[JsonProperty("planStartDate")]
|
||||
public DateTime? planStartDate { get; set; }
|
||||
/// <summary>
|
||||
/// 计划结束日期
|
||||
/// </summary>
|
||||
[JsonProperty("planEndDate")]
|
||||
public DateTime? planEndDate { get; set; }
|
||||
/// <summary>
|
||||
/// 业主名称
|
||||
/// </summary>
|
||||
[JsonProperty("stClientName")]
|
||||
public string stClientName { get; set; }
|
||||
/// <summary>
|
||||
/// 业主联系人
|
||||
/// </summary>
|
||||
[JsonProperty("clientContactor")]
|
||||
public string clientContactor { get; set; }
|
||||
/// <summary>
|
||||
/// 业主联系人电话
|
||||
/// </summary>
|
||||
[JsonProperty("mobileTel")]
|
||||
public string mobileTel { get; set; }
|
||||
/// <summary>
|
||||
/// 操作类型
|
||||
/// </summary>
|
||||
[JsonProperty("disType")]
|
||||
public string disType { get; set; }
|
||||
///// <summary>
|
||||
///// 项目类型名称(一级)【控制软件项目类型】
|
||||
///// </summary>
|
||||
//[JsonProperty("projName")]
|
||||
//public string projName { get; set; }
|
||||
///// <summary>
|
||||
///// 项目类型名称(二级)
|
||||
///// </summary>
|
||||
//[JsonProperty("projTypeName")]
|
||||
//public string projTypeName { get; set; }
|
||||
/// <summary>
|
||||
/// 项目阶段编码
|
||||
/// </summary>
|
||||
[JsonProperty("projStepZxnoCode")]
|
||||
public string projStepZxnoCode { get; set; }
|
||||
/// <summary>
|
||||
/// 项目阶段名称
|
||||
/// </summary>
|
||||
[JsonProperty("projStepZxnoName")]
|
||||
public string projStepZxnoName { get; set; }
|
||||
/// <summary>
|
||||
/// 项目类型一级
|
||||
/// 项目类型一级【控制软件项目类型】
|
||||
/// </summary>
|
||||
[JsonProperty("stProjectTypeVals")]
|
||||
public string stProjectTypeVals { get; set; }
|
||||
@@ -147,11 +177,31 @@ namespace Model
|
||||
/// </summary>
|
||||
[JsonProperty("stProjectStepVals")]
|
||||
public string stProjectStepVals { get; set; }
|
||||
///// <summary>
|
||||
///// 项目阶段名称【控制软件项目阶段】
|
||||
///// </summary>
|
||||
//[JsonProperty("projStepName")]
|
||||
//public string projStepName { get; set; }
|
||||
/// <summary>
|
||||
/// 项目阶段编码
|
||||
/// </summary>
|
||||
[JsonProperty("projStepZxnoCode")]
|
||||
public string projStepZxnoCode { get; set; }
|
||||
/// <summary>
|
||||
/// 项目阶段名称【控制软件项目阶段】
|
||||
/// </summary>
|
||||
[JsonProperty("projStepZxnoName")]
|
||||
public string projStepZxnoName { get; set; }
|
||||
/// <summary>
|
||||
/// 项目阶段
|
||||
/// </summary>
|
||||
[JsonProperty("projStepZxnoVals")]
|
||||
public string projStepZxnoVals { get; set; }
|
||||
///// <summary>
|
||||
///// 项目性质名称
|
||||
///// </summary>
|
||||
//[JsonProperty("projPropName")]
|
||||
//public string projPropName { get; set; }
|
||||
/// <summary>
|
||||
/// 项目性质
|
||||
/// </summary>
|
||||
@@ -163,20 +213,10 @@ namespace Model
|
||||
[JsonProperty("remarkC")]
|
||||
public string remarkC { get; set; }
|
||||
/// <summary>
|
||||
/// 详细地址
|
||||
/// 建设地点名称(境内、境外)
|
||||
/// </summary>
|
||||
[JsonProperty("address")]
|
||||
public string address { get; set; }
|
||||
/// <summary>
|
||||
/// 市编码
|
||||
/// </summary>
|
||||
[JsonProperty("cityCode")]
|
||||
public string cityCode { get; set; }
|
||||
/// <summary>
|
||||
/// 市名称
|
||||
/// </summary>
|
||||
[JsonProperty("cityName")]
|
||||
public string cityName { get; set; }
|
||||
[JsonProperty("stLocationName")]
|
||||
public string stLocationName { get; set; }
|
||||
/// <summary>
|
||||
/// 国家编码
|
||||
/// </summary>
|
||||
@@ -188,6 +228,26 @@ namespace Model
|
||||
[JsonProperty("countryName")]
|
||||
public string countryName { get; set; }
|
||||
/// <summary>
|
||||
/// 省编码
|
||||
/// </summary>
|
||||
[JsonProperty("provinceCode")]
|
||||
public string provinceCode { get; set; }
|
||||
/// <summary>
|
||||
/// 省名称
|
||||
/// </summary>
|
||||
[JsonProperty("provinceName")]
|
||||
public string provinceName { get; set; }
|
||||
/// <summary>
|
||||
/// 市编码
|
||||
/// </summary>
|
||||
[JsonProperty("cityCode")]
|
||||
public string cityCode { get; set; }
|
||||
/// <summary>
|
||||
/// 市名称
|
||||
/// </summary>
|
||||
[JsonProperty("cityName")]
|
||||
public string cityName { get; set; }
|
||||
/// <summary>
|
||||
/// 区县编码
|
||||
/// </summary>
|
||||
[JsonProperty("countyCode")]
|
||||
@@ -198,20 +258,10 @@ namespace Model
|
||||
[JsonProperty("countyName")]
|
||||
public string countyName { get; set; }
|
||||
/// <summary>
|
||||
/// 项目英文名称
|
||||
/// 详细地址
|
||||
/// </summary>
|
||||
[JsonProperty("projectNameEn")]
|
||||
public string projectNameEn { get; set; }
|
||||
/// <summary>
|
||||
/// 省编码
|
||||
/// </summary>
|
||||
[JsonProperty("provinceCode")]
|
||||
public string provinceCode { get; set; }
|
||||
/// <summary>
|
||||
/// 省名称
|
||||
/// </summary>
|
||||
[JsonProperty("provinceName")]
|
||||
public string provinceName { get; set; }
|
||||
[JsonProperty("address")]
|
||||
public string address { get; set; }
|
||||
/// <summary>
|
||||
/// 经度
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user