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.
32 lines
678 B
32 lines
678 B
using System; |
|
using System.Collections.Generic; |
|
using System.Text; |
|
|
|
namespace ReZero.SuperAPI |
|
{ |
|
public class ZeroPermissionInfo : DbBase |
|
{ |
|
/// <summary> |
|
/// 名称 |
|
/// </summary> |
|
public string? Name { get; set; } |
|
} |
|
|
|
public class ZeroPermissionMapping : DbBase |
|
{ |
|
/// <summary> |
|
/// 用户名 |
|
/// </summary> |
|
public string? UserName { get; set; } |
|
|
|
/// <summary> |
|
/// 接口ID |
|
/// </summary> |
|
public long? InterfaceId { get; set; } |
|
|
|
/// <summary> |
|
/// 权限信息ID |
|
/// </summary> |
|
public long? PermissionInfoId { get; set; } |
|
} |
|
}
|
|
|