FileMapper.java 371 B

1234567891011121314151617
  1. package jnpf.mapper;
  2. import jnpf.base.mapper.SuperMapper;
  3. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  4. import jnpf.entity.FileEntity;
  5. /**
  6. *
  7. *
  8. * @author JNPF开发平台组
  9. * @version V3.1.0
  10. * @copyright 引迈信息技术有限公司(https://www.jnpfsoft.com)
  11. * @date 2021/5/13
  12. */
  13. public interface FileMapper extends SuperMapper<FileEntity> {
  14. }