1、系统菜单调整;

2、系统看板UI调整;
3、事故事件功能
4、其他
This commit is contained in:
2025-12-10 15:58:02 +08:00
parent 3d00bb7a94
commit 6619f1e004
276 changed files with 131707 additions and 50045 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; }
}
}