72 lines
1.6 KiB
Java
72 lines
1.6 KiB
Java
package com.rzdata.web.mapper;
|
|
|
|
import com.rzdata.web.domain.Document;
|
|
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
/**
|
|
* 【请填写功能名称】Mapper接口
|
|
*
|
|
* @author ja
|
|
* @date 2024-07-09
|
|
*/
|
|
public interface DocumentMapper
|
|
{
|
|
/**
|
|
* 查询【请填写功能名称】
|
|
*
|
|
* @param docId 【请填写功能名称】主键
|
|
* @return 【请填写功能名称】
|
|
*/
|
|
public Document selectDocumentById(String docId);
|
|
|
|
/**
|
|
* 查询【请填写功能名称】列表
|
|
*
|
|
* @param Document 【请填写功能名称】
|
|
* @return 【请填写功能名称】集合
|
|
*/
|
|
public List<Document> selectDocumentList(Document Document);
|
|
|
|
/**
|
|
* 新增【请填写功能名称】
|
|
*
|
|
* @param Document 【请填写功能名称】
|
|
* @return 结果
|
|
*/
|
|
public int insertDocument(Document Document);
|
|
|
|
/**
|
|
* 修改【请填写功能名称】
|
|
*
|
|
* @param Document 【请填写功能名称】
|
|
* @return 结果
|
|
*/
|
|
public int updateDocument(Document Document);
|
|
|
|
/**
|
|
* 删除【请填写功能名称】
|
|
*
|
|
* @param id 【请填写功能名称】主键
|
|
* @return 结果
|
|
*/
|
|
public int deleteDocumentById(String id);
|
|
|
|
/**
|
|
* 逻辑删除
|
|
*
|
|
* @param Document 需要删除的数据主键集合
|
|
* @return 结果
|
|
*/
|
|
public int isDeleteDocumentByIds(Document Document);
|
|
|
|
public int updatePushDoc(Document doc);
|
|
|
|
public int batchDeleteById(List<String> list);
|
|
|
|
List<Map<String, Object>> countType();
|
|
|
|
List<Map<String, Object>> countSource();
|
|
}
|