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.

38 lines
777 B

5 months ago
using SqlSugar;
7 months ago
5 months ago
namespace Entity.DbModel;
7 months ago
5 months ago
/// <summary>
/// </summary>
[SugarTable("sysDicData")]
public class sysDicData
{
/// <summary>
/// Desc:
/// Default:
/// Nullable:False
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int ID { get; set; }
7 months ago
5 months ago
/// <summary>
/// Desc:字典类型ID
/// Default:
/// Nullable:True
/// </summary>
public int? DicTypeID { get; set; }
7 months ago
5 months ago
/// <summary>
/// Desc:内容
/// Default:
/// Nullable:True
/// </summary>
public string DicData { get; set; }
7 months ago
5 months ago
/// <summary>
/// Desc:备注
/// Default:
/// Nullable:True
/// </summary>
public string Remark { get; set; }
}