forked from anjoy8/Blog.Core
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathPasswordLib.cs
More file actions
60 lines (45 loc) · 1.85 KB
/
PasswordLib.cs
File metadata and controls
60 lines (45 loc) · 1.85 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
53
54
55
56
57
58
59
60
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Blog.Core.Model.Models
{
/// <summary>
/// 密码库表
/// </summary>
[SugarTable("PasswordLib", "WMBLOG_MSSQL_2")]
public class PasswordLib
{
[SugarColumn(IsNullable = false, IsPrimaryKey = true, IsIdentity = true)]
public int PLID { get; set; }
/// <summary>
///获取或设置是否禁用,逻辑上的删除,非物理删除
/// </summary>
[SugarColumn(IsNullable = true)]
public bool? IsDeleted { get; set; }
[SugarColumn(ColumnDataType = "nvarchar", Length = 200, IsNullable = true)]
public string plURL { get; set; }
[SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true)]
public string plPWD { get; set; }
[SugarColumn(ColumnDataType = "nvarchar", Length = 200, IsNullable = true)]
public string plAccountName { get; set; }
[SugarColumn(IsNullable = true)]
public int? plStatus { get; set; }
[SugarColumn(IsNullable = true)]
public int? plErrorCount { get; set; }
[SugarColumn(ColumnDataType = "nvarchar", Length = 200, IsNullable = true)]
public string plHintPwd { get; set; }
[SugarColumn(ColumnDataType = "nvarchar", Length = 200, IsNullable = true)]
public string plHintquestion { get; set; }
[SugarColumn(IsNullable = true)]
public DateTime? plCreateTime { get; set; }
[SugarColumn(IsNullable = true)]
public DateTime? plUpdateTime { get; set; }
[SugarColumn(IsNullable = true)]
public DateTime? plLastErrTime { get; set; }
[SugarColumn(ColumnDataType = "nvarchar", Length = 200, IsNullable = true)]
public string test { get; set; }
}
}