117 lines
1.6 KiB
C#
117 lines
1.6 KiB
C#
|
|
|||
|
using System;
|
|||
|
namespace Model.APIItem
|
|||
|
{
|
|||
|
public class BaseProjectItem
|
|||
|
{
|
|||
|
/**
|
|||
|
* 项目ID
|
|||
|
*/
|
|||
|
|
|||
|
public string ProjectId { get; set; }
|
|||
|
|
|||
|
/**
|
|||
|
* 项目编号
|
|||
|
*/
|
|||
|
|
|||
|
public string ProjectCode { get; set; }
|
|||
|
|
|||
|
/**
|
|||
|
* 项目名称
|
|||
|
*/
|
|||
|
|
|||
|
public string ProjectName { get; set; }
|
|||
|
|
|||
|
/**
|
|||
|
* 项目简称
|
|||
|
*/
|
|||
|
|
|||
|
public string ShortName { get; set; }
|
|||
|
|
|||
|
/**
|
|||
|
* 开工时间
|
|||
|
*/
|
|||
|
|
|||
|
public DateTime? StartDate { get; set; }
|
|||
|
|
|||
|
/**
|
|||
|
* 中交时间
|
|||
|
*/
|
|||
|
|
|||
|
public DateTime? EndDate { get; set; }
|
|||
|
|
|||
|
/**
|
|||
|
* 项目经理
|
|||
|
*/
|
|||
|
|
|||
|
public string ProjectPrincipal { get; set; }
|
|||
|
|
|||
|
/**
|
|||
|
* 项目副经理
|
|||
|
*/
|
|||
|
|
|||
|
public string ProjectManager { get; set; }
|
|||
|
|
|||
|
/**
|
|||
|
* 技术总工程师
|
|||
|
*/
|
|||
|
|
|||
|
public string TechnicalPrincipal { get; set; }
|
|||
|
|
|||
|
/**
|
|||
|
* 项目HSE经理
|
|||
|
*/
|
|||
|
|
|||
|
public string SecurePrincipal { get; set; }
|
|||
|
|
|||
|
/**
|
|||
|
* 备注
|
|||
|
*/
|
|||
|
public string Remark { get; set; }
|
|||
|
|
|||
|
/**
|
|||
|
* 监理
|
|||
|
*/
|
|||
|
|
|||
|
public string WatchUnit { get; set; }
|
|||
|
|
|||
|
/**
|
|||
|
* 分包单位(多个用“,” 隔开)
|
|||
|
*/
|
|||
|
|
|||
|
public string SubUnit { get; set; }
|
|||
|
|
|||
|
/**
|
|||
|
* 是否关闭(true:是;false:否)
|
|||
|
*/
|
|||
|
|
|||
|
public bool? IsClosed { get; set; }
|
|||
|
|
|||
|
/**
|
|||
|
* 检测工程编号
|
|||
|
*/
|
|||
|
|
|||
|
public string TestEngineeringCode { get; set; }
|
|||
|
|
|||
|
/**
|
|||
|
* 类型(1-管道安装,2-压力容器)
|
|||
|
*/
|
|||
|
|
|||
|
public string ProjectSoft { get; set; }
|
|||
|
|
|||
|
|
|||
|
public string CheckUnitId { get; set; }
|
|||
|
|
|||
|
|
|||
|
public string TestStandardId { get; set; }
|
|||
|
|
|||
|
|
|||
|
public string CreateManId { get; set; }
|
|||
|
|
|||
|
|
|||
|
public bool? PowerIsExtracted { get; set; }
|
|||
|
public bool?IsRed { get; set; }
|
|||
|
|
|||
|
}
|
|||
|
}
|