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

19 lines
849 B
C#
Raw Normal View History

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