2021-07-17 20:44:27 +08:00
|
|
|
package com.ruoyi.system.mapper;
|
|
|
|
|
2022-01-12 21:22:26 +08:00
|
|
|
import com.ruoyi.common.core.mapper.BaseMapperPlus;
|
2021-07-17 20:44:27 +08:00
|
|
|
import com.ruoyi.system.domain.SysOss;
|
2022-01-12 21:22:26 +08:00
|
|
|
import com.ruoyi.system.domain.vo.SysOssVo;
|
2021-07-17 20:44:27 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 文件上传 数据层
|
|
|
|
*
|
2021-07-18 18:20:21 +08:00
|
|
|
* @author Lion Li
|
2021-07-17 20:44:27 +08:00
|
|
|
*/
|
2022-01-12 21:22:26 +08:00
|
|
|
public interface SysOssMapper extends BaseMapperPlus<SysOssMapper, SysOss, SysOssVo> {
|
2021-07-17 20:44:27 +08:00
|
|
|
}
|