You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
786 B
33 lines
786 B
using PEIS.Utils;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace PEIS.Entity
|
|
{
|
|
/// <summary>
|
|
/// 字典分类
|
|
/// </summary>
|
|
public class BaseDictionaryType : ObjectData
|
|
{
|
|
public override String TableName => "Dict_Dictionary_Type";
|
|
/// <summary>
|
|
/// 分类编码
|
|
/// </summary>
|
|
public string DictCode { get; set; }
|
|
/// <summary>
|
|
/// 分类名称
|
|
/// </summary>
|
|
public string DictName { get; set; }
|
|
/// <summary>
|
|
/// 分类顺序
|
|
/// </summary>
|
|
public int DictOrder { get; set; }
|
|
/// <summary>
|
|
/// 分类备注
|
|
/// </summary>
|
|
public string DictNote { get; set; }
|
|
|
|
}
|
|
}
|
|
|