FileInfoMapper.java 274 B

12345678910111213141516
  1. package com.fjhx.mapper;
  2. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  3. import com.fjhx.entity.FileInfo;
  4. /**
  5. * <p>
  6. * 文件 Mapper 接口
  7. * </p>
  8. *
  9. * @author ${author}
  10. * @since 2022-07-07
  11. */
  12. public interface FileInfoMapper extends BaseMapper<FileInfo> {
  13. }