This commit is contained in:
Jane
2024-07-16 15:13:36 +08:00
parent 571d50fc38
commit 31e21120b3
333 changed files with 41443 additions and 0 deletions

View File

@@ -0,0 +1,62 @@
package com.rzdata.web.mapper;
import com.rzdata.web.domain.Document;
import java.util.List;
/**
* 【请填写功能名称】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 ids 需要删除的数据主键集合
* @return 结果
*/
public int deleteDocumentByIds(String[] ids);
}

View File

@@ -0,0 +1,62 @@
package com.rzdata.web.mapper;
import com.rzdata.web.domain.Tool;
import java.util.List;
/**
* 工具信息Mapper接口
*
* @author ja
* @date 2024-07-15
*/
public interface ToolMapper
{
/**
* 查询工具信息
*
* @param toolId 工具信息主键
* @return 工具信息
*/
public Tool selectToolByToolId(String toolId);
/**
* 查询工具信息列表
*
* @param tool 工具信息
* @return 工具信息集合
*/
public List<Tool> selectToolList(Tool tool);
/**
* 新增工具信息
*
* @param tool 工具信息
* @return 结果
*/
public int insertTool(Tool tool);
/**
* 修改工具信息
*
* @param tool 工具信息
* @return 结果
*/
public int updateTool(Tool tool);
/**
* 删除工具信息
*
* @param toolId 工具信息主键
* @return 结果
*/
public int deleteToolByToolId(String toolId);
/**
* 批量删除工具信息
*
* @param toolIds 需要删除的数据主键集合
* @return 结果
*/
public int deleteToolByToolIds(String[] toolIds);
}