SGGL_JT/SUBQHSE/Model/Customization/7HJ/TrustInfo.cs

34 lines
1.7 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.Collections.Generic;
namespace Model.Customization._7HJ
{
public class TrustInfo
{
public string CH_TrustID { get; set; } // 假设这是整型主键
public string CH_TrustCode { get; set; }
public string CH_TrustUnit { get; set; }
public System.Nullable<System.DateTime> CH_TrustDate { get; set; }
public string CH_TrustType { get; set; } //
public string CH_TrustMan { get; set; }
public string CH_Tabler { get; set; }
public System.Nullable<System.DateTime> CH_TableDate { get; set; }
public string CH_UnitName { get; set; } // 存储单元ID的字符串可能需要进一步处理
public string CH_WorkNo { get; set; } // 存储单元名称的字符串,由多个名称拼接而成
public string CH_ItemName { get; set; }
public string CH_SlopeType { get; set; }
public string CH_ServiceTemp { get; set; } // 假设这是整型主键
public string CH_Press { get; set; }
public string CH_WeldMethod { get; set; }
public string CH_NDTRate { get; set; }
public string CH_NDTMethod { get; set; } //
public string CH_NDTCriteria { get; set; }
public string CH_AcceptGrade { get; set; }
public string CH_Remark { get; set; }
public string CH_CheckUnit { get; set; } // 存储单元ID的字符串可能需要进一步处理
public string ProjectId { get; set; } // 存储单元名称的字符串,由多个名称拼接而成
public string InstallationId { get; set; }
public System.Nullable<System.DateTime> CH_RequestDate { get; set; }
public string ToIso_Id { get; set; }
public List<Model.View_CH_TrustItem> TrustItems { get; set; }
}
}