feat(考勤管理): 新增考勤记录管理功能并移除配置编辑权限校验

新增考勤记录管理的前后端功能,包括查询、新增、修改、删除和同步考勤记录
移除系统配置编辑接口的权限校验注解
This commit is contained in:
2026-04-21 15:38:11 +08:00
parent bd9beb32eb
commit e44235abd8
3 changed files with 422 additions and 1 deletions

View File

@@ -102,7 +102,6 @@ public class SysConfigController extends BaseController {
/**
* 根据参数键名修改参数配置
*/
@SaCheckPermission("system:config:edit")
@Log(title = "参数管理", businessType = BusinessType.UPDATE)
@PutMapping("/updateByKey")
public R<Void> updateByKey(@RequestBody SysConfig config) {