duheng
2024-06-19 ebbe0f7a757500a7c07e12eabb2b1800b7d8f257
修改文件
已修改4个文件
87 ■■■■ 文件已修改
HStation.Service.Xhs.Core/01-entity/XhsProject.cs 25 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
HStation.Service.Xhs.Core/01-entity/XhsProjectItemModel.cs 20 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
HStation.Service.Xhs.Core/01-entity/XhsProjectItemModelMap.cs 29 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
WinFrmUI/HStation.WinFrmUI.Xhs.Project/01-project/XhsProjectListPage.cs 13 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
HStation.Service.Xhs.Core/01-entity/XhsProject.cs
@@ -10,12 +10,13 @@
    public class XhsProject : BaseEntity, IParas, IFlags, ITagName, ISorter, IUseStatus, System.ICloneable
    {
        /// <summary>
        ///
        ///
        /// </summary>
        public XhsProject() { }
        public XhsProject()
        { }
        /// <summary>
        ///
        ///
        /// </summary>
        public XhsProject(XhsProject rhs) : base(rhs)
        {
@@ -26,14 +27,17 @@
            this.UseStatus = rhs.UseStatus;
            this.SortCode = rhs.SortCode;
            this.Description = rhs.Description;
            // Guid.net
        }
        /// <summary>
        /// GUID 用于升级
        /// </summary>
        public string GID { get; set; }
        /// <summary>
        /// 名称
        /// </summary>
        /// </summary>
        public string Name { get; set; }
        /// <summary>
@@ -82,7 +86,17 @@
        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,17 +5,18 @@
    /// <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>
        ///
        ///
        /// </summary>
        public XhsProjectItemModel(XhsProjectItemModel rhs) : base(rhs)
        {
@@ -27,18 +28,20 @@
            this.SortCode = rhs.SortCode;
            this.Description = rhs.Description;
        }
        /// <summary>
        /// 项目ID
        /// </summary>
        public long ProjectID { get; set; }
        /// <summary>
        /// 在BIMFACE中的ID
        /// </summary>
        public string BimfaceID { get; set; }
        /// <summary>
        /// 名称
        /// </summary>
        /// </summary>
        public string Name { get; set; }
        /// <summary>
@@ -77,7 +80,7 @@
        public int Version { get; set; }
        /// <summary>
        ///
        ///
        /// </summary>
        public XhsProjectItemModel Clone()
        {
@@ -89,5 +92,4 @@
            return this.MemberwiseClone();
        }
    }
}
HStation.Service.Xhs.Core/01-entity/XhsProjectItemModelMap.cs
@@ -7,42 +7,44 @@
    /// </summary>
    [SysType("xhs-projectitembimfacemap")]
    [SugarTable("xhs_projectitembimfacemap")]
    public class XhsProjectItemModelMap : BaseEntity,   IUseStatus, System.ICloneable
    public class XhsProjectItemModelMap : BaseEntity, IUseStatus, System.ICloneable
    {
        /// <summary>
        ///
        ///
        /// </summary>
        public XhsProjectItemModelMap() { }
        public XhsProjectItemModelMap()
        { }
        /// <summary>
        ///
        ///
        /// </summary>
        public XhsProjectItemModelMap(XhsProjectItemModelMap rhs) : base(rhs)
        {
            this.ProjectID = rhs.ProjectID;
            this.ItemID = rhs.ItemID;
            this.ItemID = rhs.ItemID;
            this.ModelID = rhs.ModelID;
        }
        /// <summary>
        /// 项目ID
        /// </summary>
        public long ProjectID { get; set; }
        /// <summary>
        /// 名称
        /// </summary>
        /// 工位ID
        /// </summary>
        public long ItemID { get; set; }
        /// <summary>
        /// 模型
        /// 模型ID
        /// </summary>
        public long  ModelID { get; set; }
        public long ModelID { get; set; }
        /// <summary>
        /// 使用状态
        /// </summary>
        public int UseStatus { get; set; }
        /// <summary>
        /// 上传人
        /// </summary>
@@ -53,10 +55,8 @@
        /// </summary>
        public DateTime UploadTime { get; set; }
        /// <summary>
        ///
        ///
        /// </summary>
        public XhsProjectItemModelMap Clone()
        {
@@ -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
    {