项目主数据对接

This commit is contained in:
2025-03-28 14:22:04 +08:00
parent b0f56d5f4e
commit dbf8b972bc
11 changed files with 1139 additions and 1025 deletions
+721 -673
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -230,7 +230,7 @@
<Compile Include="JDGL\WBSDetailItem.cs" />
<Compile Include="JDGL\WBSSetInitItem.cs" />
<Compile Include="JDGL\WBSSetItem.cs" />
<Compile Include="MDM\MdmProject.cs" />
<Compile Include="PMP\PMPProject.cs" />
<Compile Include="Model.cs" />
<Compile Include="ModelProc.cs" />
<Compile Include="Num.cs" />
@@ -20,7 +20,7 @@ namespace Model
/// <summary>
/// 项目
/// </summary>
public partial class MdmResponseData
public partial class PMPResponseData
{
/// <summary>
/// 返回状态
@@ -42,7 +42,7 @@ namespace Model
/// 返回状态
/// </summary>
[JsonProperty("rows")]
public System.Collections.Generic.List<MdmProject> rows { get; set; }
public System.Collections.Generic.List<PMPProject> rows { get; set; }
/// <summary>
/// 返回消息
/// </summary>
@@ -62,7 +62,7 @@ namespace Model
/// <summary>
/// 项目
/// </summary>
public partial class MdmProject
public partial class PMPProject
{
/// <summary>
/// 主键ID
@@ -80,11 +80,6 @@ namespace Model
[JsonProperty("stNum")]
public string stNum { get; set; }
/// <summary>
/// 操作类型
/// </summary>
[JsonProperty("disType")]
public string disType { get; set; }
/// <summary>
/// 名称
/// </summary>
[JsonProperty("name")]
@@ -95,6 +90,21 @@ namespace Model
[JsonProperty("projShortName")]
public string projShortName { get; set; }
/// <summary>
/// 项目开工日期
/// </summary>
[JsonProperty("realStartDate")]
public DateTime? realStartDate { get; set; }
/// <summary>
/// 项目竣工日期
/// </summary>
[JsonProperty("realEndDate")]
public DateTime? realEndDate { get; set; }
/// <summary>
/// 操作类型
/// </summary>
[JsonProperty("disType")]
public string disType { get; set; }
/// <summary>
/// 项目阶段编码
/// </summary>
[JsonProperty("projStepZxnoCode")]
@@ -193,11 +203,11 @@ namespace Model
}
public partial class MdmResponseData
public partial class PMPResponseData
{
public static MdmResponseData FromJson(string json)
public static PMPResponseData FromJson(string json)
{
return JsonConvert.DeserializeObject<MdmResponseData>(json, Model.Converter.Settings);
return JsonConvert.DeserializeObject<PMPResponseData>(json, Model.Converter.Settings);
}
}