ZHJA_HJGL/HJGL_ZH/Model/APIItem/BaseProjectItem.cs

117 lines
1.6 KiB
C#
Raw Normal View History

2024-05-08 17:17:11 +08:00

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; }
}
}