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

19 lines
830 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 PointInfo
{
public string PW_PointID { get; set; } // 假设这是整型主键
public string ProjectId { get; set; }
public string UnitId { get; set; } //
public string InstallationId { get; set; }
public string PW_PointNo { get; set; }
public string PW_PointType { get; set; }
public System.DateTime? PW_PointDate { get; set; } // 存储单元ID的字符串可能需要进一步处理
public string PW_Tabler { get; set; } // 存储单元名称的字符串,由多个名称拼接而成
public System.DateTime? PW_TablerDate { get; set; }
public string PW_Remark { get; set; }
public List<Model.View_JointInfo> JointInfos { get; set; }
}
}