| 12345678910111213141516171819202122232425262728 |
- /**
- * Copyright (c) 2022 雷掣 All rights reserved.
- *
- * https://www.lc_crm.com
- *
- * 版权所有,侵权必究!
- */
-
- package io.renren.service;
-
- import java.util.List;
-
- import io.renren.common.service.BaseService;
- import io.renren.entity.SysOssEntity;
-
- /**
- * 文件上传
- *
- * @author Mark sunlightcs@gmail.com
- */
- public interface SysOssService extends BaseService<SysOssEntity> {
-
- /**
- * 获取指定用户上传的文件
- * @param userId
- */
- List<SysOssEntity> getFileByUser(Long userId);
- }
|