HStation.Service.Xhs.Core/01-entity/XhsProject.cs | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
HStation.Service.Xhs.Core/01-entity/XhsProjectItemModel.cs | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
HStation.Service.Xhs.Core/01-entity/XhsProjectItemModelMap.cs | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
WinFrmUI/HStation.WinFrmUI.Xhs.Project/01-project/XhsProjectListPage.cs | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 |
HStation.Service.Xhs.Core/01-entity/XhsProject.cs
@@ -12,7 +12,8 @@ /// <summary> /// /// </summary> public XhsProject() { } public XhsProject() { } /// <summary> /// @@ -26,11 +27,14 @@ this.UseStatus = rhs.UseStatus; this.SortCode = rhs.SortCode; this.Description = rhs.Description; // Guid.net } /// <summary> /// GUID 用于升级 /// </summary> public string GID { get; set; } /// <summary> /// 名称 /// </summary> @@ -82,6 +86,16 @@ public int Version { get; set; } /// <summary> /// 项目地址(经度,维度) /// </summary> public string MapPosition { get; set; } /// <summary> /// 项目的客户名称 /// </summary> public string CustomerName { get; set; } /// <summary> /// /// </summary> public XhsProject Clone() @@ -94,5 +108,4 @@ return this.MemberwiseClone(); } } } HStation.Service.Xhs.Core/01-entity/XhsProjectItemModel.cs
@@ -5,14 +5,15 @@ /// <summary> /// 业务站 /// </summary> [SysType("xhs-projectitembimface")] [SugarTable("xhs_projectitembimface")] [SysType("xhs-projectitemmodel")] [SugarTable("xhs_projectitemmodel")] public class XhsProjectItemModel : BaseEntity, IParas, IFlags, ITagName, ISorter, IUseStatus, System.ICloneable { /// <summary> /// /// </summary> public XhsProjectItemModel() { } public XhsProjectItemModel() { } /// <summary> /// @@ -27,6 +28,7 @@ this.SortCode = rhs.SortCode; this.Description = rhs.Description; } /// <summary> /// 项目ID /// </summary> @@ -36,6 +38,7 @@ /// 在BIMFACE中的ID /// </summary> public string BimfaceID { get; set; } /// <summary> /// 名称 /// </summary> @@ -89,5 +92,4 @@ return this.MemberwiseClone(); } } } HStation.Service.Xhs.Core/01-entity/XhsProjectItemModelMap.cs
@@ -12,7 +12,8 @@ /// <summary> /// /// </summary> public XhsProjectItemModelMap() { } public XhsProjectItemModelMap() { } /// <summary> /// @@ -23,18 +24,19 @@ this.ItemID = rhs.ItemID; this.ModelID = rhs.ModelID; } /// <summary> /// 项目ID /// </summary> public long ProjectID { get; set; } /// <summary> /// 名称 /// 工位ID /// </summary> public long ItemID { get; set; } /// <summary> /// 模型 /// 模型ID /// </summary> public long ModelID { get; set; } @@ -53,8 +55,6 @@ /// </summary> public DateTime UploadTime { get; set; } /// <summary> /// /// </summary> @@ -68,5 +68,4 @@ return this.MemberwiseClone(); } } } WinFrmUI/HStation.WinFrmUI.Xhs.Project/01-project/XhsProjectListPage.cs
@@ -1,15 +1,4 @@ using DevExpress.XtraEditors; using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace HStation.WinFrmUI namespace HStation.WinFrmUI { public partial class XhsProjectListPage : DevExpress.XtraEditors.XtraForm {