15 lines
300 B
Plaintext
Raw Normal View History

2020-02-13 10:48:51 +08:00
package ${packageName}.mapper;
import ${packageName}.domain.${ClassName};
import com.ruoyi.common.core.mybatisplus.core.BaseMapperPlus;
2020-02-13 10:48:51 +08:00
/**
* ${functionName}Mapper接口
*
2020-02-13 10:48:51 +08:00
* @author ${author}
* @date ${datetime}
*/
public interface ${ClassName}Mapper extends BaseMapperPlus<${ClassName}> {
2020-02-13 10:48:51 +08:00
}