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.
21 lines
470 B
21 lines
470 B
package ${packageName};
|
|
|
|
#foreach ($importClass in $importPackageList)
|
|
$importClass
|
|
#end
|
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
/**
|
|
* ${basic.description} Manager
|
|
*
|
|
* @Author ${basic.backendAuthor}
|
|
* @Date ${basic.backendDate}
|
|
* @Copyright ${basic.copyright}
|
|
*/
|
|
@Service
|
|
public class ${name.upperCamel}Manager extends ServiceImpl<${name.upperCamel}Dao, ${name.upperCamel}Entity> {
|
|
|
|
|
|
}
|
|
|