15 lines
296 B
Plaintext
Raw Normal View History

2020-02-13 10:48:51 +08:00
package ${packageName}.service;
import ${packageName}.domain.${ClassName};
import com.baomidou.mybatisplus.extension.service.IService;
2020-02-13 10:48:51 +08:00
/**
* ${functionName}Service接口
*
2020-02-13 10:48:51 +08:00
* @author ${author}
* @date ${datetime}
*/
public interface I${ClassName}Service extends IService<${ClassName}> {
2020-02-13 10:48:51 +08:00
}