初始化
This commit is contained in:
40
Face.Domain/Entities/Authority.cs
Normal file
40
Face.Domain/Entities/Authority.cs
Normal file
@@ -0,0 +1,40 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// 此代码已从模板生成。
|
||||
//
|
||||
// 手动更改此文件可能导致应用程序出现意外的行为。
|
||||
// 如果重新生成代码,将覆盖对此文件的手动更改。
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
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<AppAutho>();
|
||||
this.OrgAuthority = new HashSet<OrgAuthority>();
|
||||
this.UserAuthoes = new HashSet<UserAuthoes>();
|
||||
}
|
||||
|
||||
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<int> IsValid { get; set; }
|
||||
public string AuthoStatusTypeId { get; set; }
|
||||
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
||||
public virtual ICollection<AppAutho> AppAutho { get; set; }
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
||||
public virtual ICollection<OrgAuthority> OrgAuthority { get; set; }
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
||||
public virtual ICollection<UserAuthoes> UserAuthoes { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user