${entityName}Mapper.javai 446 字节
Newer Older
JEECG低代码平台's avatar
JEECG低代码平台 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
package ${bussiPackage}.${entityPackage}.mapper;

import java.util.List;

import org.apache.ibatis.annotations.Param;
import ${bussiPackage}.${entityPackage}.entity.${entityName};
import com.baomidou.mybatisplus.core.mapper.BaseMapper;

/**
 * @Description: ${tableVo.ftlDescription}
 * @Author: jeecg-boot
 * @Date:   ${.now?string["yyyy-MM-dd"]}
 * @Version: V1.0
 */
public interface ${entityName}Mapper extends BaseMapper<${entityName}> {

}