You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
538 B
16 lines
538 B
using System;
|
|
|
|
namespace NFine.Domain.Entity.SystemManage
|
|
{
|
|
public class RoleAuthorizeEntity : IEntity<RoleAuthorizeEntity>, ICreationAudited
|
|
{
|
|
public string F_Id { get; set; }
|
|
public int? F_ItemType { get; set; }
|
|
public string F_ItemId { get; set; }
|
|
public int? F_ObjectType { get; set; }
|
|
public string F_ObjectId { get; set; }
|
|
public int? F_SortCode { get; set; }
|
|
public DateTime? F_CreatorTime { get; set; }
|
|
public string F_CreatorUserId { get; set; }
|
|
}
|
|
}
|