/**
|
* Copyright (c) 2018 人人开源 All rights reserved.
|
*
|
* https://www.renren.io
|
*
|
* 版权所有,侵权必究!
|
*/
|
|
package com.example.server.sysOss.dao;
|
|
import com.example.server.dao.BaseDao;
|
import com.example.server.sysOss.model.SysOss;
|
import org.apache.ibatis.annotations.Mapper;
|
|
import java.util.List;
|
import java.util.Map;
|
|
/**
|
* 文件上传
|
*
|
* @author hehz
|
*/
|
@Mapper
|
public interface SysOssDao extends BaseDao<SysOss> {
|
|
List<SysOss> getList(Long busiId, String busiType);
|
|
Integer getBusiFieldNameCount(Long busiId, String busiType);
|
|
List<SysOss> getSysOssByBusiType(Map<String, Object> params);
|
|
List<SysOss> getOldFileList();
|
}
|