package org.jeecg.modules.dnc.mapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import org.jeecg.modules.dnc.entity.DocFile;
|
import org.apache.ibatis.annotations.Param;
|
|
public interface DocFileMapper extends BaseMapper<DocFile> {
|
/**
|
* 根据文件的绑定类型和绑定id删除文档下的所有文件信息
|
* @param attrType
|
* @param attrId
|
* @return
|
*/
|
int deleteByDocAttr(@Param("attrType") Integer attrType, @Param("attrId") String attrId);
|
}
|