feat: 数据库操作类型

使用AutoFill面向切面,设置枚举量
This commit is contained in:
bunny 2024-03-11 20:34:33 +08:00
parent 25af5719ac
commit 8a7c017b1c
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
package com.sky.common.enumeration;
/**
* 数据库操作类型
* 使用AutoFill面向切面设置枚举量
*/
public enum OperationType {
UPDATE,// 更新操作
INSERT// 插入操作
}