Files
SGGL_SHJ/SGGL/Model/CLGL/AntiCorrosionTrustOutput.cs
T

28 lines
1.0 KiB
C#

using System;
namespace Model
{
public class AntiCorrosionTrustOutput
{
public string Id { get; set; }
public string ProjectId { get; set; }
public string UnitWorkId { get; set; }
public string UnitWorkName { get; set; }
public string ConstructionPart { get; set; }
public string ConstructionProfessional { get; set; }
public string TrustCode { get; set; }
public string WeldTaskCode { get; set; }
public string HotProessTrustId { get; set; }
public string TeamGroupId { get; set; }
public string TeamGroupName { get; set; }
// 仅供旧打印模板兼容,数据库不再保留出库单关联。
public string OutputMasterCode { get; set; }
public DateTime? DemandDate { get; set; }
public DateTime? CompleteDate { get; set; }
public string CreateMan { get; set; }
public string CreateManName { get; set; }
public DateTime? CreateDate { get; set; }
public string Remark { get; set; }
}
}