namespace iWareSql.WmsDBModel { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; [Table("SysLdap")] public partial class SysLdap { [DatabaseGenerated(DatabaseGeneratedOption.None)] public long Id { get; set; } [Required] [StringLength(128)] public string Host { get; set; } public int Port { get; set; } [Required] [StringLength(128)] public string BaseDn { get; set; } [Required] [StringLength(32)] public string BindDn { get; set; } [Required] [StringLength(512)] public string BindPass { get; set; } [Required] [StringLength(128)] public string AuthFilter { get; set; } public int Version { get; set; } [Required] [StringLength(32)] public string BindAttrAccount { get; set; } [Required] [StringLength(32)] public string BindAttrEmployeeId { get; set; } [Required] [StringLength(64)] public string BindAttrCode { get; set; } public int Status { get; set; } public long? TenantId { get; set; } public DateTime? CreateTime { get; set; } public DateTime? UpdateTime { get; set; } public long? CreateUserId { get; set; } [StringLength(64)] public string CreateUserName { get; set; } public long? UpdateUserId { get; set; } [StringLength(64)] public string UpdateUserName { get; set; } public bool IsDelete { get; set; } } }