18 lines
528 B
Plaintext
18 lines
528 B
Plaintext
|
package ${packageName}.service.impl;
|
||
|
|
||
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||
|
import ${packageName}.mapper.${ClassName}Mapper;
|
||
|
import ${packageName}.domain.${ClassName};
|
||
|
import ${packageName}.service.I${ClassName}Service;
|
||
|
import org.springframework.stereotype.Service;
|
||
|
/**
|
||
|
* ${functionName}Service业务层处理
|
||
|
*
|
||
|
* @author ${author}
|
||
|
* @date ${datetime}
|
||
|
*/
|
||
|
@Service
|
||
|
public class ${ClassName}ServiceImpl extends ServiceImpl<${ClassName}Mapper, ${ClassName}> implements I${ClassName}Service {
|
||
|
|
||
|
}
|