SystemMapper.java 317 B

123456789101112131415161718
  1. package jnpf.mapper;
  2. import jnpf.base.mapper.SuperMapper;
  3. import jnpf.entity.SystemEntity;
  4. /**
  5. * 系统
  6. *
  7. * @author JNPF开发平台组
  8. * @version V3.1.0
  9. * @copyright 引迈信息技术有限公司
  10. * @date 2019年9月27日 上午9:18
  11. */
  12. public interface SystemMapper extends SuperMapper<SystemEntity> {
  13. }