using SqlSugar;
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel;
|
using System.ComponentModel.DataAnnotations;
|
|
namespace IStation.Entity
|
{
|
/// <summary>
|
/// 系统字典类型表
|
/// </summary>
|
[SugarTable("sys_dict_type")]
|
public class SysDictType : BaseEntity,ISorter,IUseStatus, System.ICloneable
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public SysDictType() { }
|
|
/// <summary>
|
///
|
/// </summary>
|
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;
|
}
|
|
/// <summary>
|
/// 名称
|
/// </summary>
|
public string Name { get; set; }
|
|
/// <summary>
|
/// 编码-(识别码)
|
/// </summary>
|
public string Code { get; set; }
|
|
/// <summary>
|
/// 排序
|
/// </summary>
|
public int SortCode { get; set; }
|
|
/// <summary>
|
/// 使用状态
|
/// </summary>
|
public int UseStatus { get; set; }
|
|
/// <summary>
|
/// 备注
|
/// </summary>
|
public string Description { get; set; }
|
|
/// <summary>
|
///
|
/// </summary>
|
public SysDictType Clone()
|
{
|
return (SysDictType)this.MemberwiseClone();
|
}
|
|
object ICloneable.Clone()
|
{
|
return this.MemberwiseClone();
|
}
|
|
}
|
}
|