{ "$schema": "https://gitee.com/dotnetchina/Furion/raw/net6/schemas/v3/furion-schema.json", // 代码生成配置项-程序集名称集合 "ApiJson": { "RoleList": [ { "name": "role1", //权限名称 唯一 "select": { //查询权限 "table": [ "*" ], //可操作的表 "column": [ "tb.*" ], //可操作的字段 "where": [] }, "update": { //修改权限 "table": [ "moment", "User", "Comment" ], "column": [ "tb.*", "tb.*", "tb.*" ] }, "insert": { //添加权限 "table": [ "moment", "User", "Comment" ], "column": [ "tb.*", "tb.*", "tb.*" ] }, "delete": { //删除权限 "table": [ "moment", "User", "Comment" ] } }, { "name": "role2", "select": { "table": [ "monent" ], "column": [ "*" ] } } ] } }