feat:代码生成脚本
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
<#if isWithPackage?exists && isWithPackage==true>package ${packageName}.service;</#if>
|
||||
<#if isAutoImport?exists && isAutoImport==true>
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
</#if>
|
||||
/**
|
||||
* @description ${classInfo.classComment}服务层
|
||||
* @author ${authorName}
|
||||
* @date ${.now?string('yyyy-MM-dd')}
|
||||
*/
|
||||
@Service
|
||||
public interface ${classInfo.className}Service extends IService<${classInfo.className}> {
|
||||
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user