1. 新增数据源oracle,已在application.yml中配置

2. 新增任务状态类,未来将在切换任务状态中使用
3. 新增ProtectLevel实体类,用来存储Template对应的三种防护等级数据
4. Task实体类中删除protectObjectIds,因为MySQL表结构发生修改
5. TaskController新增audit和delete路由,用以审核和删除Task
6. TemplateMapper新增newProtectLevel方法
7.
This commit is contained in:
EnderByEndera
2024-01-08 20:01:20 +08:00
parent 1e9fe37d0d
commit 2b04a7d6ce
26 changed files with 392 additions and 204 deletions

View File

@@ -55,9 +55,6 @@ public class Task {
@JsonProperty("dynamic_rule_ids")
private List<Integer> dynamicRuleIds;
@JsonProperty("protect_object_ids")
private List<Integer> protectObjectIds;
@JsonProperty("task_status")
private Integer taskStatus;