using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
namespace IStation.Model
{
///
/// 系统字典类型表
///
public class SysDictType : System.ICloneable
{
///
///
///
public SysDictType() { }
///
///
///
public SysDictType(SysDictType rhs)
{
this.ID = rhs.ID;
this.Name = rhs.Name;
this.Code = rhs.Code;
this.SortCode = rhs.SortCode;
this.UseStatus = rhs.UseStatus;
this.Description = rhs.Description;
}
///
///
///
public void Reset(SysDictType rhs)
{
this.ID = rhs.ID;
this.Name = rhs.Name;
this.Code = rhs.Code;
this.SortCode = rhs.SortCode;
this.UseStatus = rhs.UseStatus;
this.Description = rhs.Description;
}
///
/// 标识
///
public long ID { get; set; }
///
/// 名称
///
public string Name { get; set; }
///
/// 编码
///
public string Code { get; set; }
///
/// 排序
///
public int SortCode { get; set; }
///
/// 使用状态
///
public Model.eUseStatus UseStatus { get; set; }
///
/// 备注
///
public string Description { get; set; }
///
///
///
public SysDictType Clone()
{
return (SysDictType)this.MemberwiseClone();
}
object ICloneable.Clone()
{
return this.MemberwiseClone();
}
}
}