SysOssDao.java 292 Bytes
Newer Older
mengmeng's avatar
mengmeng committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
package io.hmit.modules.oss.dao;

import io.hmit.common.dao.BaseDao;
import io.hmit.modules.oss.entity.SysOssEntity;
import org.apache.ibatis.annotations.Mapper;

/**
 * 文件上传
 *
 * @author zsh 408538940@qq.com
 */
@Mapper
public interface SysOssDao extends BaseDao<SysOssEntity> {

}