mirror of
https://github.com/continew-org/continew-admin.git
synced 2025-09-09 20:57:21 +08:00
15 lines
581 B
Plaintext
15 lines
581 B
Plaintext
package ${packageName}.${subPackageName};
|
|
|
|
import top.continew.starter.extension.crud.service.BaseService;
|
|
import ${packageName}.model.query.${classNamePrefix}Query;
|
|
import ${packageName}.model.req.${classNamePrefix}Req;
|
|
import ${packageName}.model.resp.${classNamePrefix}DetailResp;
|
|
import ${packageName}.model.resp.${classNamePrefix}Resp;
|
|
|
|
/**
|
|
* ${businessName}业务接口
|
|
*
|
|
* @author ${author}
|
|
* @since ${datetime}
|
|
*/
|
|
public interface ${className} extends BaseService<${classNamePrefix}Resp, ${classNamePrefix}DetailResp, ${classNamePrefix}Query, ${classNamePrefix}Req> {} |