using SqlSugar;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
namespace IStation.Entity
{
///
/// 字典类型表
///
[SugarTable("sys_dict_type")]
public class SysDictType : BaseEntity,ISorter,IUseStatus, System.ICloneable
{
///
///
///
public SysDictType() { }
///
///
///
public SysDictType(SysDictType rhs) : base(rhs)
{
this.Name = rhs.Name;
this.Code = rhs.Code;
this.SortCode = rhs.SortCode;
this.UseStatus = rhs.UseStatus;
this.Description = rhs.Description;
}
///
/// 名称
///
public string Name { get; set; }
///
/// 编码
///
public string Code { get; set; }
///
/// 排序
///
public int SortCode { get; set; }
///
/// 使用状态
///
public int UseStatus { get; set; }
///
/// 备注
///
public string Description { get; set; }
///
///
///
public SysDictType Clone()
{
return (SysDictType)this.MemberwiseClone();
}
object ICloneable.Clone()
{
return this.MemberwiseClone();
}
}
}