1、新增文档分类管理
2、新增资源管理开发
This commit is contained in:
@@ -0,0 +1,62 @@
|
||||
package com.rzdata.web.mapper;
|
||||
|
||||
import com.rzdata.common.core.domain.DocumentCategory;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 文档资源分类管理Mapper接口
|
||||
*
|
||||
* @author spongepan
|
||||
* @date 2024-08-27
|
||||
*/
|
||||
public interface DocumentCategoryMapper
|
||||
{
|
||||
/**
|
||||
* 查询文档资源分类管理
|
||||
*
|
||||
* @param id 文档资源分类管理主键
|
||||
* @return 文档资源分类管理
|
||||
*/
|
||||
public DocumentCategory selectDocumentCategoryById(String id);
|
||||
|
||||
/**
|
||||
* 查询文档资源分类管理列表
|
||||
*
|
||||
* @param documentCategory 文档资源分类管理
|
||||
* @return 文档资源分类管理集合
|
||||
*/
|
||||
public List<DocumentCategory> selectDocumentCategoryList(DocumentCategory documentCategory);
|
||||
|
||||
/**
|
||||
* 新增文档资源分类管理
|
||||
*
|
||||
* @param documentCategory 文档资源分类管理
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertDocumentCategory(DocumentCategory documentCategory);
|
||||
|
||||
/**
|
||||
* 修改文档资源分类管理
|
||||
*
|
||||
* @param documentCategory 文档资源分类管理
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateDocumentCategory(DocumentCategory documentCategory);
|
||||
|
||||
/**
|
||||
* 删除文档资源分类管理
|
||||
*
|
||||
* @param id 文档资源分类管理主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteDocumentCategoryById(String id);
|
||||
|
||||
/**
|
||||
* 批量删除文档资源分类管理
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteDocumentCategoryByIds(String[] ids);
|
||||
}
|
||||
Reference in New Issue
Block a user