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

34 lines
1.7 KiB
C#
Raw Normal View History

2025-04-07 17:43:30 +08:00
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; }
}
}