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.

41 lines
1.0 KiB
C#

11 months ago
namespace Ds.Modules.DsEntity.Auth
{
/// <summary>
/// 字典表
/// </summary>
public class Ds_Sys_Dictionary : BaseEntityTenant
{
/// <summary>
/// 字典名称
/// </summary>
public string DictionaryName { get; set; }
/// <summary>
11 months ago
/// 字典英文名称
/// </summary>
public string DictionaryEName { get; set; }
/// <summary>
/// 字典类型 1 普通 2 运输条款 3 船代 4 船公司 6 洲 7 业务来源
11 months ago
/// </summary>
public int DictionaryType { get; set; } = 1;
/// <summary>
/// 简称
/// </summary>
public string DictionaryCode { get; set; }
11 months ago
/// <summary>
/// 系统独占,其他不可更改删除
/// </summary>
public string IsOnly { get; set; }
11 months ago
}
11 months ago
public class Ds_Sys_BaseDictionary : BaseEntityTenant
{
11 months ago
public string Dictionarykey { get; set; }
public string BaseName { get; set; }
//key ailiyun json
11 months ago
}
11 months ago
}