17 lines
475 B
Plaintext
17 lines
475 B
Plaintext
<#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}> {
|
|
|
|
|
|
|
|
}
|