6619f1e004
2、系统看板UI调整; 3、事故事件功能 4、其他
20 lines
703 B
C#
20 lines
703 B
C#
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; }
|
|
}
|
|
} |