wangzelong
2022-11-30 44e4286e0384f8daf9b89e8f551f0f743b60ebb3
Model/IStation.Model.Basic/dict/corp/CorpDictData.cs
copy from Model/IStation.Model.Basic/dict/SysDictData.cs copy to Model/IStation.Model.Basic/dict/corp/CorpDictData.cs
Îļþ´Ó Model/IStation.Model.Basic/dict/SysDictData.cs ¸´ÖÆ
@@ -1,26 +1,27 @@
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
namespace IStation.Model
namespace IStation.Model
{
    /// <summary>
    /// å­—典值表
    /// å®¢æˆ·å­—典值表
    /// </summary>
    public class SysDictData :  System.ICloneable
    public class CorpDictData : System.ICloneable
    {
        /// <summary>
        /// 
        /// </summary>
        public SysDictData() { }
        public CorpDictData() { }
        /// <summary>
        /// 
        /// </summary>
        public SysDictData(SysDictData rhs)
        public CorpDictData(CorpDictData rhs)
        {
            this.ID = rhs.ID;
            this.CorpID = rhs.CorpID;
            this.TypeID = rhs.TypeID;
            this.Value = rhs.Value;
            this.Name = rhs.Name;
            this.Code = rhs.Code;
            this.SortCode = rhs.SortCode;
            this.UseStatus = rhs.UseStatus;
@@ -30,11 +31,12 @@
        /// <summary>
        /// 
        /// </summary>
        public void Reset(SysDictData rhs)
        public void Reset(CorpDictData rhs)
        {
            this.ID = rhs.ID;
            this.CorpID= rhs.CorpID;
            this.TypeID = rhs.TypeID;
            this.Value = rhs.Value;
            this.Name = rhs.Name;
            this.Code = rhs.Code;
            this.SortCode = rhs.SortCode;
            this.UseStatus = rhs.UseStatus;
@@ -47,14 +49,19 @@
        public long ID { get; set; }
        /// <summary>
        /// å®¢æˆ·id
        /// </summary>
        public long CorpID { get; set; }
        /// <summary>
        /// å­—典类型Id
        /// </summary>
        public long TypeID { get; set; }
        /// <summary>
        /// å€¼
        /// åç§°
        /// </summary>
        public string Value { get; set; }
        public string Name { get; set; }
        /// <summary>
        /// ç¼–码
@@ -79,9 +86,9 @@
        /// <summary>
        /// 
        /// </summary>
        public SysDictData Clone()
        public CorpDictData Clone()
        {
            return (SysDictData)this.MemberwiseClone();
            return (CorpDictData)this.MemberwiseClone();
        }
        object ICloneable.Clone()