SysInfo.cs
1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
using System;
using System.ComponentModel.DataAnnotations.Schema;
namespace WebRepository
{
/// <summary>
/// 系统信息
/// </summary>
[Table("sys_info")]
public partial class SysInfo : SysEntity
{
public SysInfo()
{
}
/// <summary>
/// 系统关键字
/// </summary>
[Column("appKey")]
public string AppKey { get; set; }
/// <summary>
/// 系统密钥
/// </summary>
[Column("appSecret")]
public string AppSecret { get; set; }
/// <summary>
/// 标题
/// </summary>
[Column("title")]
public string Title { get; set; }
/// <summary>
/// 备注
/// </summary>
[Column("remark")]
public string Remark { get; set; }
/// <summary>
/// 图标
/// </summary>
[Column("icon")]
public string Icon { get; set; }
/// <summary>
/// 主页
/// </summary>
[Column("returnUrl")]
public string ReturnUrl { get; set; }
/// <summary>
/// 生效
/// </summary>
[Column("isEnable")]
public bool? IsEnable { get; set; }
}
}