using System; using System.Collections.Generic; namespace SWS.CAD.Models { public class ec_enginedata_pixel { #region 实体成员 /// /// 工程数据图元ID /// /// public string EngineDataPixelID { get; set; } /// /// 工程数据ID。 /// /// public string EngineDataID { get; set; } = ""; /// /// 图纸文件ID。 /// /// public string DrawingFileID { get; set; } = ""; /// /// 元件库文件ID。可能有,也可能没有(比如反向关联时)。 /// /// public string LibraryFileID { get; set; } = ""; /// /// 图元编码。即dwg里的句柄。 /// /// public string PixelCode { get; set; } = ""; /// /// MaxPointX /// /// public string MaxPointX { get; set; } = ""; /// /// MaxPointY /// /// public string MaxPointY { get; set; } = ""; /// /// MinPointX /// /// public string MinPointX { get; set; } = ""; /// /// MinPointY /// /// public string MinPointY { get; set; } = ""; /// /// 标记位,表示这个记录是否在上一次图纸检入过程中未找到。 /// 相当于逻辑删除。 /// /// public int DeleteFlg { get; set; } = 0; /// /// 类型 /// public string RepresentationType { get; set; } /// /// 创建人 /// /// public string CreateUserID { get; set; } /// /// 创建时间 /// /// public DateTime? CreateTime { get; set; } /// /// 更新人 /// /// public string UpdateUserID { get; set; } /// /// 更新时间 /// /// public DateTime? UpdateTime { get; set; } #endregion #region 扩展字段 /// /// 图纸文件名称 /// public string DrawingFileName { get; set; } /// /// 位号 /// public string TagNumber { get; set; } /// /// 对象类型ID /// public string ObjectTypeID { get; set; } /// /// 对象类型名称 /// public string ObjectTypeName { get; set; } /// /// 工程数据属性集合 /// public List EngineDataProperty { get; set; } #endregion } }