//------------------------------------------------------------------------------
//
// 此代码已从模板生成。
//
// 手动更改此文件可能导致应用程序出现意外的行为。
// 如果重新生成代码,将覆盖对此文件的手动更改。
//
//------------------------------------------------------------------------------
namespace Face.Domain.Entities
{
using System;
using System.Collections.Generic;
public partial class Authority
{
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
public Authority()
{
this.AppAutho = new HashSet();
this.OrgAuthority = new HashSet();
this.UserAuthoes = new HashSet();
}
public int Id { get; set; }
public string AuthorityName { get; set; }
public string Desc { get; set; }
public System.DateTime CreateTime { get; set; }
public string CreatedBy { get; set; }
public Nullable IsValid { get; set; }
public string AuthoStatusTypeId { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection AppAutho { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection OrgAuthority { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection UserAuthoes { get; set; }
}
}