19 lines
402 B
Java
19 lines
402 B
Java
package jnpf.mapper;
|
|
|
|
|
|
import jnpf.base.mapper.SuperMapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import jnpf.entity.TableExampleEntity;
|
|
|
|
/**
|
|
* 表格示例数据
|
|
*
|
|
* @author JNPF开发平台组
|
|
* @version V3.1.0
|
|
* @copyright 引迈信息技术有限公司
|
|
* @date 2019年9月26日 上午9:18
|
|
*/
|
|
public interface TableExampleMapper extends SuperMapper<TableExampleEntity> {
|
|
|
|
}
|