19 lines
830 B
C#
19 lines
830 B
C#
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; }
|
||
}
|
||
} |