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.
31 lines
607 B
31 lines
607 B
using SparkClient.Model.Entity.Base; |
|
|
|
namespace SparkClient.Model.Entity; |
|
|
|
/// <summary> |
|
/// 系统设置实体 |
|
/// </summary> |
|
|
|
public class SystemSettingEntity : BaseEntity |
|
{ |
|
public static string TableName = "SYSTEM_SETTING"; |
|
/// <summary> |
|
/// 设置编号 |
|
/// </summary> |
|
[DbField("SETID")] |
|
public string SetId { get; set; } |
|
/// <summary> |
|
/// 设置名称 |
|
/// </summary> |
|
[DbField("NAME")] |
|
public string SetName { get; set; } |
|
/// <summary> |
|
/// 设置值 |
|
/// </summary> |
|
[DbField("VALUE")] |
|
public string SetValue { get; set; } |
|
|
|
|
|
} |
|
|
|
|
|
|