forked from anjoy8/Blog.Core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPasswordLib.cs
More file actions
34 lines (30 loc) · 984 Bytes
/
PasswordLib.cs
File metadata and controls
34 lines (30 loc) · 984 Bytes
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Blog.Core.Model.Models
{
/// <summary>
/// 密码库表
/// </summary>
public class PasswordLib
{
public int PLID { get; set; }
/// <summary>
///获取或设置是否禁用,逻辑上的删除,非物理删除
/// </summary>
public bool? IsDeleted { get; set; }
public string plURL { get; set; }
public string plPWD { get; set; }
public string plAccountName { get; set; }
public int? plStatus { get; set; }
public int? plErrorCount { get; set; }
public string plHintPwd { get; set; }
public string plHintquestion { get; set; }
public DateTime? plCreateTime { get; set; }
public DateTime? plUpdateTime { get; set; }
public DateTime? plLastErrTime { get; set; }
public string test { get; set; }
}
}