添加项目文件。
This commit is contained in:
@@ -0,0 +1,44 @@
|
||||
using SqlSugar;
|
||||
|
||||
namespace JNPF.Common.Models.Authorize;
|
||||
|
||||
/// <summary>
|
||||
/// 代码生成权限资源.
|
||||
/// </summary>
|
||||
public class CodeGenAuthorizeModuleResourceModel
|
||||
{
|
||||
/// <summary>
|
||||
/// 字段规则
|
||||
/// 0-主表,1-副表,2-子表.
|
||||
/// </summary>
|
||||
public int FieldRule { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 表名称针对非主表.
|
||||
/// </summary>
|
||||
public string TableName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 权限条件.
|
||||
/// </summary>
|
||||
public List<IConditionalModel> conditionalModel { get; set; }
|
||||
}
|
||||
|
||||
public class CodeGenAuthorizeModuleResource
|
||||
{
|
||||
/// <summary>
|
||||
/// 字段规则
|
||||
/// 0-主表,1-副表,2-子表.
|
||||
/// </summary>
|
||||
public int FieldRule { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 表名称针对非主表.
|
||||
/// </summary>
|
||||
public string TableName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 权限条件.
|
||||
/// </summary>
|
||||
public List<object> conditionalModel { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user