docs: 更新文档标题

This commit is contained in:
wintel
2025-04-24 00:03:31 +08:00
parent 1525a25aba
commit ca8b2a82c4
30 changed files with 6 additions and 37 deletions

View File

@@ -3,7 +3,6 @@ title: 缓存机制
createTime: 2025/04/23 21:03:10
permalink: /core/cache/
---
# 缓存机制
## 服务器缓存

View File

@@ -3,7 +3,6 @@ title: 版本发布
createTime: 2025/04/23 21:03:10
permalink: /core/changelog/
---
# 版本发布
### v7.0

View File

@@ -3,7 +3,6 @@ title: 切换sdk版本
createTime: 2025/04/23 21:03:10
permalink: /core/changesdk/
---
# 切换sdk版本
OpenAuth.Net最新版默认使用.Net SDK 9.0.100。如果你使用的是其他版本的sdk如.net 6.0/7.0等打开项目需要调整csproj项目文件的TargetFramework。用记事本等工具打开 `Infrastructure.csproj` `OpenAuth.Repository.csproj` `OpenAuth.App.csproj` `OpenAuth.Mvc.csproj` `OpenAuth.WebApi.csproj` `OpenAuth.IdentityServer.csproj`,将
```csharp

View File

@@ -3,6 +3,5 @@ title: 数据权限
createTime: 2025/04/23 21:03:10
permalink: /core/dataprivilege/
---
# 数据权限
关于数据权限控制,可以详细查看博文:[通用权限设计与实现](https://www.cnblogs.com/yubaolee/p/DataPrivilege.html)

View File

@@ -4,8 +4,6 @@ createTime: 2025/04/23 21:03:10
permalink: /core/datapropertyrule/
---
# 字段权限
::: warning 注意
字段权限只针对【非系统模块】有效即在添加新模块的时候需要设置模块属性“是否系统”为false。
:::

View File

@@ -1,9 +1,8 @@
---
title: 部署
title: 部署MVC
createTime: 2025/04/23 21:03:10
permalink: /core/deploy/
---
# 部署MVC
::: tip 提示
因.net core内部有自托管的Web服务器推荐使用控制台方式部署。本内容基于控制台命令的方式。如果部署到IIS请自行百度:cold_sweat:

View File

@@ -3,7 +3,6 @@ title: 部署API
createTime: 2025/04/23 21:03:10
permalink: /core/deployapi/
---
# 部署API
## 生成发布文件

View File

@@ -3,7 +3,6 @@ title: 添加新模块
createTime: 2025/04/23 21:03:10
permalink: /core/devnew/
---
# 添加新模块
## 前言

View File

@@ -3,7 +3,6 @@ title: 动态API
createTime: 2025/04/23 21:03:10
permalink: /core/dynamicapi/
---
# 动态API
加快系统开发速度框架提供动态API功能可以实现无代码调整操作数据库。

View File

@@ -3,7 +3,6 @@ title: 数据库实体
createTime: 2025/04/23 21:03:10
permalink: /core/entity/
---
# 数据库实体
## 更换主键名称

View File

@@ -3,7 +3,6 @@ title: 常见问题处理
createTime: 2025/04/23 21:03:10
permalink: /core/faq/
---
# 常见问题处理
## 注释的使用

View File

@@ -3,7 +3,7 @@ title: 工作流实例
createTime: 2025/04/23 21:03:10
permalink: /core/flowinstance/
---
# 工作流介绍
OpenAuth.Net工作流基于国际标准的BPMN2.0规范,并在此基础上做了一些扩展,以满足国内各种需求。系统工作流分为两个大类:

View File

@@ -3,7 +3,6 @@ title: 工作流中的概念
createTime: 2025/04/23 21:03:10
permalink: /core/flowinstanceconcept/
---
# 工作流中的概念
## 并行网关

View File

@@ -3,7 +3,6 @@ title: 流程相关的代码
createTime: 2025/04/23 21:03:10
permalink: /core/flowinstancedev/
---
# 流程相关的代码
## 流程审批逻辑

View File

@@ -3,7 +3,6 @@ title: 表单设计
createTime: 2025/04/23 21:03:10
permalink: /core/form/
---
# 表单设计
OpenAuth.Net集成了表单设计的功能目前表单仅用于流程审批。后期会集成到代码生成功能中。系统内置的表单类型有以下几种

View File

@@ -1,9 +1,8 @@
---
title: identity
title: 登录认证
createTime: 2025/04/23 21:03:10
permalink: /core/identity/
---
# 登录认证
OpenAuth.Net支持两种登录认证方式token认证和自己搭建的OpenAuth.IdentityServer认证。

View File

@@ -3,7 +3,6 @@ title: 定时任务
createTime: 2025/04/23 21:03:10
permalink: /core/job/
---
# 定时任务
::: tip 提示
定时任务基于Quartz.Net开发

View File

@@ -3,7 +3,6 @@ title: 日志操作
createTime: 2025/04/23 21:03:10
permalink: /core/log/
---
# 日志操作
## 普通日志

View File

@@ -3,7 +3,6 @@ title: 登录信息
createTime: 2025/04/23 21:03:10
permalink: /core/logininfo/
---
# 登录信息
框架在应用层任意业务逻辑中,均可以通过`IAuth`接口判断是否登录和获取登录信息。所有继承BaseApp的业务逻辑可以直接使用`_auth`成员变量直接获取登录用户信息。

View File

@@ -3,7 +3,6 @@ title: 模块/菜单权限
createTime: 2025/04/23 21:03:10
permalink: /core/moduleauth/
---
# 模块/菜单权限
网络上流行的经典的权限设计是【主体】- 【领域】 - 【权限】( who、what、how问题原型 ) 的设计思想,其中:

View File

@@ -1,9 +1,8 @@
---
title: 配置多数据库
title: 多数据库
createTime: 2025/04/23 21:03:10
permalink: /core/multidbs/
---
# 配置多数据库
框架支持同时访问多个数据库。具体操作如下:

View File

@@ -3,7 +3,6 @@ title: 多租户
createTime: 2025/04/23 21:03:10
permalink: /core/multitenant/
---
# 多租户
目前市面上主流的多租户方案有三种:

View File

@@ -3,7 +3,6 @@ title: 日常提交
createTime: 2025/04/23 21:03:10
permalink: /core/routineupdate/
---
# 日常提交(针对dev分支)
* 2025.03.17 代码生成加上外部数据源支持

View File

@@ -3,7 +3,6 @@ title: 后端开发规范
createTime: 2025/04/23 21:03:10
permalink: /core/specialist/
---
# 后端开发规范
## 数据库表及字段命名

View File

@@ -1,9 +1,8 @@
---
title: sqlsugar
title: SqlSugar集成
createTime: 2025/04/23 21:03:10
permalink: /core/sqlsugar/
---
# SqlSugar访问数据库
SqlSugar 是一款老牌.NET开源ORM框架相对于EntityFramework复杂的Linq表达式它拥有灵活的动态查询如果你喜欢直接码Sql那么它是你的不二之选。OpenAuth.Net 6.0及以后版本默认支持使用SqlSugar方式访问数据库。目前大多数模块都已使用SqlSugar的方式这里以资源管理为例

View File

@@ -3,7 +3,6 @@ title: 快速开始
createTime: 2025/04/23 21:03:10
permalink: /core/start/
---
# 快速开始
## 下载代码

View File

@@ -3,8 +3,6 @@ title: 三方对接
createTime: 2025/04/23 21:03:10
permalink: /core/thirdparty/
---
# 三方对接
* 在OpenAuth中设计表单注意表单中的控件名称在步骤3调用OpenAuth创建流程实例接口时frmData参数中的属性必须严格按该命名提交。
![](/formthirdparty.png "表单设计说明")

View File

@@ -3,7 +3,6 @@ title: 单元测试
createTime: 2025/04/23 21:03:10
permalink: /core/unittest/
---
# 单元测试
为了方便项目调试框架的所有层均支持单元测试。代码基于NUnit框架编写。测试内如大概如下

View File

@@ -3,7 +3,6 @@ title: 数据库读写及事务处理
createTime: 2025/04/23 21:03:10
permalink: /core/unitwork/
---
# 数据库读写及事务处理
OpenAuth.Net使用Repository和Unitwork两种方式访问数据库。

View File

@@ -1,9 +1,8 @@
---
title: 前端结构
title: MVC前端
createTime: 2025/04/23 21:03:10
permalink: /core/wwwarchitect/
---
# 前端结构
OpenAuth.Mvc前端采用典型的mvc结构部署其中