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

19 lines
849 B
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 WeldReportMainInfo
{
public string DReportID { get; set; } // 假设这是整型主键
public string ProjectId { get; set; }
public string InstallationId { get; set; }
public string UnitId { get; set; } //
public System.DateTime JOT_WeldDate { get; set; }
public string JOT_DailyReportNo { get; set; }
public string CHT_Tabler { get; set; } // 存储单元ID的字符串可能需要进一步处理
public System.DateTime? CHT_TableDate { get; set; } // 存储单元名称的字符串,由多个名称拼接而成
public string JOT_Remark { get; set; }
public string SetValue { get; set; }
public List<Model.View_JointInfo> GetWeldReportItem { get; set; }
}
}