| 12345678910111213141516171819202122232425262728293031323334 |
- {
- "$schema": "https://gitee.com/dotnetchina/Furion/raw/v4/schemas/v4/furion-schema.json",
- "APIJSON": {
- "Roles": [
- {
- "RoleName": "Role1", // 权限名称 唯一
- "Select": { // 查询
- "Table": [ "*" ], // 可操作的表
- "Column": [ "*" ], // 可操作的字段
- "Filter": []
- },
- "Insert": { // 添加
- "Table": [ "table1", "table2", "table3" ],
- "Column": [ "*", "*", "tb.*" ]
- },
- "Update": { // 修改
- "Table": [ "table1", "table2", "table3" ],
- "Column": [ "*", "tb.*", "tb.*" ]
- },
- "Delete": { // 删除
- "Table": [ "table1", "table2", "table3" ]
- }
- },
- {
- "RoleName": "Role2",
- "Select": {
- "Table": [ "table1" ],
- "Column": [ "tb.*" ]
- }
- }
- ]
- }
- }
|