/** * Copyright (c) 2018 人人开源 All rights reserved. *

* https://www.renren.io *

* 版权所有,侵权必究! */ 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 { List getList(Map params); Integer getBusiFieldNameCount(Long busiId, String busiType); }