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.
22 lines
641 B
22 lines
641 B
using SqlSugar; |
|
using System; |
|
using System.Collections.Generic; |
|
using System.Text; |
|
|
|
namespace ReZero.SuperAPI |
|
{ |
|
public class SavePermissionInfoDetailModel: ZeroPermissionInfo |
|
{ |
|
[SqlSugar.SugarColumn(ColumnDataType = "CLOB")] |
|
public List<string>? Users { get; set; } |
|
|
|
[SqlSugar.SugarColumn(ColumnDataType = "CLOB")] |
|
public List<PermissionInfoInterfaceItem>? Items { get; set; } |
|
} |
|
public class PermissionInfoInterfaceItem |
|
{ |
|
public ZeroInterfaceList? ZeroInterfaceList { get; set; } |
|
public bool Checked { get; set; } |
|
public string? TypeName { get; set; } |
|
} |
|
}
|
|
|