You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
296 B
15 lines
296 B
|
6 years ago
|
package ${packageName}.service;
|
||
|
|
|
||
|
|
import ${packageName}.domain.${ClassName};
|
||
|
6 years ago
|
import com.baomidou.mybatisplus.extension.service.IService;
|
||
|
6 years ago
|
|
||
|
|
/**
|
||
|
|
* ${functionName}Service接口
|
||
|
6 years ago
|
*
|
||
|
6 years ago
|
* @author ${author}
|
||
|
|
* @date ${datetime}
|
||
|
|
*/
|
||
|
6 years ago
|
public interface I${ClassName}Service extends IService<${ClassName}> {
|
||
|
6 years ago
|
|
||
|
|
}
|