| 1234567891011121314151617 |
- package jnpf.base.mapper;
- import jnpf.base.entity.DataInterfaceVariateEntity;
- import org.apache.ibatis.annotations.Mapper;
- /**
- * 数据接口
- *
- * @author JNPF开发平台组
- * @version V3.1.0
- * @copyright 引迈信息技术有限公司(https://www.jnpfsoft.com)
- * @date 2021-03-23
- */
- @Mapper
- public interface DataInterfaceVariateMapper extends SuperMapper<DataInterfaceVariateEntity> {
- }
|