chore
This commit is contained in:
19
Atomx.Common/Entities/UserAccessControl.cs
Normal file
19
Atomx.Common/Entities/UserAccessControl.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace Atomx.Common.Entities
|
||||
{
|
||||
/// <summary>
|
||||
/// 用户访问控制表
|
||||
/// </summary>
|
||||
[Table("UserAccessControls")]
|
||||
public class UserAccessControl
|
||||
{
|
||||
/// <summary>
|
||||
/// 数据ID
|
||||
/// </summary>
|
||||
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
||||
[Key]
|
||||
public long Id { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user