RuoYi/ruoyi-generator/src/main/resources/vm/java/Mapper.java.vm

24 lines
537 B
Plaintext
Raw Normal View History

2018-07-09 08:44:52 +08:00
package ${package}.mapper;
import ${package}.domain.${className};
2018-12-06 20:22:19 +08:00
import java.util.List;
import com.ruoyi.framework.web.base.MyMapper;
2018-07-09 08:44:52 +08:00
/**
* ${tableComment} 数据层
*
* @author ${author}
* @date ${datetime}
*/
2018-12-06 20:22:19 +08:00
public interface ${className}Mapper extends MyMapper<${className}>
2018-07-09 08:44:52 +08:00
{
2018-12-07 22:23:03 +08:00
2018-07-09 08:44:52 +08:00
/**
* 查询${tableComment}列表
*
* @param ${classname} ${tableComment}信息
* @return ${tableComment}集合
*/
public List<${className}> select${className}List(${className} ${classname});
}