add 协议明细接口

This commit is contained in:
路 范
2021-09-17 14:03:52 +08:00
parent a3e41aee85
commit 82dde0078d
40 changed files with 332 additions and 38 deletions

View File

@@ -14,19 +14,31 @@ namespace Ewide.NbzsZheliban.Entity.Extends
}
public class Fhpgs
{
public string Id { get; set; }
[Newtonsoft.Json.JsonIgnore]
public string dcbId { get; set; }
public string PrjId { get; set; }
public string AssessmentNo { get; set; }
public string HouseAddress { get; set; }
public string countValue { get; set; }
public string CreateTime { get; set; }
public string CreateUserName { get; set; }
}
public class Bcxy
{
public string Id { get; set; }
[Newtonsoft.Json.JsonIgnore]
public string dcbId { get; set; }
public string PrjId { get; set; }
public string XyNo { get; set; }
public string HouseAddress { get; set; }
public string SummationShouldCompensateMoney { get; set; }
public string SwitchProductionWay { get; set; }
public string countValue { get; set; }
public string SignTime { get; set; }
}
public class H5IndexModel
{
@@ -66,11 +78,11 @@ namespace Ewide.NbzsZheliban.Entity.Extends
/// <summary>
/// 分户评估集合
/// </summary>
public object FhpgList { get; set; }
public List<Fhpgs> FhpgList { get; set; }
/// <summary>
/// 补偿协议集合
/// </summary>
public object BcxyList { get; set; }
public List<Bcxy> BcxyList { get; set; }
}
public class PoliciesRegulations
{