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.

23 lines
641 B

using SqlSugar;
using System;
3 weeks ago
using System.Collections.Generic;
using System.Text;
namespace ReZero.SuperAPI
{
public class SavePermissionInfoDetailModel: ZeroPermissionInfo
{
[SqlSugar.SugarColumn(ColumnDataType = "CLOB")]
3 weeks ago
public List<string>? Users { get; set; }
[SqlSugar.SugarColumn(ColumnDataType = "CLOB")]
3 weeks ago
public List<PermissionInfoInterfaceItem>? Items { get; set; }
}
public class PermissionInfoInterfaceItem
{
public ZeroInterfaceList? ZeroInterfaceList { get; set; }
public bool Checked { get; set; }
public string? TypeName { get; set; }
}
}