ZHJA_HJGL/HJGL_ZH/Model/APIItem/BaseProjectItem.cs

117 lines
1.6 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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; }
/**
* 是否关闭truefalse
*/
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; }
}
}