You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
namespace Ds.Modules.DsEntity.Auth
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 字典表
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class Ds_Sys_Dictionary : BaseEntityTenant
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 字典名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string DictionaryName { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 字典英文名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string DictionaryEName { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 字典类型 1 普通 2 运输条款 3 船代 4 船公司 6 洲 7 业务来源
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int DictionaryType { get; set; } = 1;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 简称
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string DictionaryCode { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 系统独占,其他不可更改删除
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string IsOnly { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class Ds_Sys_BaseDictionary : BaseEntityTenant
|
|
|
|
|
{
|
|
|
|
|
public string Dictionarykey { get; set; }
|
|
|
|
|
public string BaseName { get; set; }
|
|
|
|
|
|
|
|
|
|
//key ailiyun json
|
|
|
|
|
}
|
|
|
|
|
}
|