feat: mybatis自动填充实现,分页拦截器实现
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
package cn.meowrain.aioj.backend.framework.core.enums;
|
||||
|
||||
/**
|
||||
* 删除枚举
|
||||
*/
|
||||
public enum DelStatusEnum {
|
||||
STATUS_NORMAL("0"),
|
||||
STATUS_DELETE("1");
|
||||
|
||||
private final String code;
|
||||
DelStatusEnum(String code) {
|
||||
this.code = code;
|
||||
}
|
||||
public String code() {
|
||||
return this.code;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user