13 lines
144 B
Java
13 lines
144 B
Java
package cn.fateverse.code.enums;
|
|
|
|
/**
|
|
* @author Clay
|
|
* @date 2023-07-31
|
|
*/
|
|
public enum BackTemplateEnum {
|
|
|
|
MYBATIS,
|
|
MYBATIS_PLUS;
|
|
|
|
}
|