ningshuxia
10 小时以前 71c12ff40d58c3dbdde6867396dd99224e57fc32
Service/HStation.Service.PhartRelation.Core/01-entity/01-relation/PhartDiagramRelation.cs
@@ -6,19 +6,19 @@
    /// 图表关联
    ///</summary>
    [SysType("phart-diagram-relation")]
    [SugarTable("phart_diagram_relation")]
    public class PhartDiagramRelation : BaseEntity , ISorter, System.ICloneable
    [SugarTable("phart_diagram_relation")]
    public class PhartDiagramRelation : BaseEntity, ISorter, System.ICloneable
    {
         /// <summary>
         ///
         /// </summary>
         public PhartDiagramRelation() { }
        /// <summary>
        ///
        /// </summary>
        public PhartDiagramRelation() { }
         /// <summary>
         ///
         /// </summary>
         public PhartDiagramRelation(PhartDiagramRelation rhs) : base(rhs)
         {
        /// <summary>
        ///
        /// </summary>
        public PhartDiagramRelation(PhartDiagramRelation rhs) : base(rhs)
        {
            this.ObjectType = rhs.ObjectType;
            this.ObjectID = rhs.ObjectID;
            this.DiagramID = rhs.DiagramID;
@@ -26,14 +26,14 @@
            this.Importance = rhs.Importance;
            this.SortCode = rhs.SortCode;
            this.Description = rhs.Description;
         }
        }
        /// <summary>
        /// 对象类型 
        ///</summary>
        [SugarColumn(Length = 500, IsNullable = true)]
        [SugarColumn(Length = 500, IsNullable = true)]
        public string ObjectType { get; set; }
        /// <summary>
        /// 对象标识 
        ///</summary>
@@ -47,42 +47,42 @@
        /// <summary>
        /// 别名 
        ///</summary>
        [SugarColumn(Length = 500, IsNullable = true)]
        [SugarColumn(Length = 500, IsNullable = true)]
        public string OtherName { get; set; }
        /// <summary>
        /// 重要度 
        ///</summary>
        public int Importance { get; set; }
        /// <summary>
        /// 排序码 
        ///</summary>
        public int SortCode { get; set; }
        /// <summary>
        /// 说明 
        ///</summary>
        [SugarColumn(ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)]
        [SugarColumn(ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)]
        public string Description { get; set; }
        /// <summary>
        ///
        /// </summary>
        public PhartDiagramRelation Clone()
        {
         return (PhartDiagramRelation)this.MemberwiseClone();
            return (PhartDiagramRelation)this.MemberwiseClone();
        }
        object ICloneable.Clone()
        {
         return this.MemberwiseClone();
            return this.MemberwiseClone();
        }
    }
}