去除无效的代码

This commit is contained in:
Chopper
2021-06-17 10:41:53 +08:00
parent 0995a3b75f
commit bf023ccad5
9 changed files with 1 additions and 1423 deletions

View File

@@ -0,0 +1,14 @@
package ${entity.servicePackage};
import com.baomidou.mybatisplus.extension.service.IService;
import ${entity.entityPackage}.${entity.className};
import java.util.List;
/**
* ${entity.description} 业务层
* @author ${entity.author}
*/
public interface ${entity.className}Service extends IService<${entity.className}> {
}