FileListDao.java 315 Bytes
package cn.fw.rp.dao;

import cn.fw.data.base.db.dao.BaseDao;
import cn.fw.rp.db.FileList;
import org.apache.ibatis.annotations.Mapper;

/**
 * 2018年5月8日 15点26分
 *
 * @author suchu
 */
@Mapper
public interface FileListDao extends BaseDao<FileList, Integer> {
    FileList selectByFileId(String fileId);
}