提交代码

This commit is contained in:
2024-12-25 15:43:38 +08:00
parent 0a2f9ea3a7
commit c0b489aaf4
79 changed files with 8536 additions and 1546 deletions
+20
View File
@@ -0,0 +1,20 @@
using System;
namespace Model
{
public class ProjectOutput :BaseEntities
{
public DateTime? StartDate { get; set; }
public DateTime? EndDate { get; set; }
public string ProjectAddress { get; set; }
public string ShortName { get; set; }
public decimal? ConstructionMoney { get; set; }
public string ProjectStateName { get; set; }
public string ProjectState { get; set; }
public string ProjectAttributeName { get; set; }
public decimal? ProjectMoney { get; set; }
public int? DayCount { get; set; }
public string ProjectTypeName { get; set; }
public string ProjectStateName2 { get; set; }
}
}