namespace iWareSql.DBModel { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; [Table("PasswordLib")] public partial class PasswordLib { [Key] public int PLID { get; set; } public bool? IsDeleted { get; set; } [StringLength(200)] public string plURL { get; set; } [StringLength(100)] public string plPWD { get; set; } [StringLength(200)] public string plAccountName { get; set; } public int? plStatus { get; set; } public int? plErrorCount { get; set; } [StringLength(200)] public string plHintPwd { get; set; } [StringLength(200)] public string plHintquestion { get; set; } public DateTime? plCreateTime { get; set; } public DateTime? plUpdateTime { get; set; } public DateTime? plLastErrTime { get; set; } [StringLength(200)] public string test { get; set; } } }