add增加ticket记录

This commit is contained in:
路 范
2021-09-15 15:39:58 +08:00
parent 43166c1a78
commit 7011df3e06
21 changed files with 133 additions and 13 deletions

View File

@@ -34,7 +34,7 @@ namespace Ewide.NbzsZheliban.Entity.Extends
/// 项目信息
/// </summary>
public List<H5IndexPrjModel> PrjList { get; set; }
public List<PoliciesRegulation> PoliciesRegulationsList { get; set; }
public PoliciesRegulations PoliciesRegulationsLists { get; set; }
}
public class H5IndexPrjModel
{
@@ -70,6 +70,11 @@ namespace Ewide.NbzsZheliban.Entity.Extends
/// </summary>
public object BcxyList { get; set; }
}
public class PoliciesRegulations
{
public int TotalCount { get; set; }
public List<PoliciesRegulation> List { get; set; }
}
public class PoliciesRegulation
{
@@ -77,5 +82,6 @@ namespace Ewide.NbzsZheliban.Entity.Extends
public string Title { get; set; }
public string Contents { get; set; }
public DateTime? PublicTime { get; set; }
public string Area { get; set; }
}
}