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