copy from Model/IStation.Model.Basic/dict/SysDictType.cs
copy to Model/IStation.Model.Basic/dict/corp/CorpDictType.cs
Îļþ´Ó Model/IStation.Model.Basic/dict/SysDictType.cs ¸´ÖÆ |
| | |
| | | using System.ComponentModel; |
| | | using System.ComponentModel.DataAnnotations; |
| | | |
| | | namespace IStation.Model |
| | | namespace IStation.Model |
| | | { |
| | | /// <summary> |
| | | /// åå
¸ç±»å表 |
| | | /// 客æ·åå
¸ç±»å表 |
| | | /// </summary> |
| | | public class SysDictType : System.ICloneable |
| | | public class CorpDictType : System.ICloneable |
| | | { |
| | | /// <summary> |
| | | /// |
| | | /// </summary> |
| | | public SysDictType() { } |
| | | public CorpDictType() { } |
| | | |
| | | /// <summary> |
| | | /// |
| | | /// </summary> |
| | | public SysDictType(SysDictType rhs) |
| | | public CorpDictType(CorpDictType rhs) |
| | | { |
| | | this.ID = rhs.ID; |
| | | this.CorpID = rhs.CorpID; |
| | | this.Name = rhs.Name; |
| | | this.Code = rhs.Code; |
| | | this.SortCode = rhs.SortCode; |
| | |
| | | /// <summary> |
| | | /// |
| | | /// </summary> |
| | | public void Reset(SysDictType rhs) |
| | | public void Reset(CorpDictType rhs) |
| | | { |
| | | this.ID = rhs.ID; |
| | | this.CorpID= rhs.CorpID; |
| | | this.Name = rhs.Name; |
| | | this.Code = rhs.Code; |
| | | this.SortCode = rhs.SortCode; |
| | |
| | | /// æ è¯ |
| | | /// </summary> |
| | | public long ID { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 客æ·id |
| | | /// </summary> |
| | | public long CorpID { get; set; } |
| | | |
| | | /// <summary> |
| | | /// åç§° |
| | |
| | | /// <summary> |
| | | /// |
| | | /// </summary> |
| | | public SysDictType Clone() |
| | | public CorpDictType Clone() |
| | | { |
| | | return (SysDictType)this.MemberwiseClone(); |
| | | return (CorpDictType)this.MemberwiseClone(); |
| | | } |
| | | |
| | | object ICloneable.Clone() |