package com.panzhihua.service_community.service;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.panzhihua.common.model.vos.R;
|
import com.panzhihua.common.model.vos.community.ComActWorkGuideClassifyVO;
|
import com.panzhihua.service_community.model.dos.ComActWorkGuideClassifyDO;
|
import org.springframework.web.bind.annotation.GetMapping;
|
import org.springframework.web.bind.annotation.PostMapping;
|
import org.springframework.web.bind.annotation.RequestBody;
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
/**
|
* title: ComActWorkGuideClassifyService 社区》办事指南》分类管理服务类
|
* projectName 成都呐喊信息技术有限公司-智慧社区项目
|
* description: 社区》办事指南》分类管理服务类
|
*
|
* @author txb
|
* @date 2021/8/31 14:21
|
*/
|
public interface ComActWorkGuideClassifyService extends IService<ComActWorkGuideClassifyDO> {
|
|
/**
|
* 分页查询办事执念-分类管理 addWorkGuideClassify 分页查询办事执念-分类管理
|
* @param comActWorkGuideClassifyVO 查询参数
|
* @return R 返回结果
|
* @author txb
|
* @date 2021/8/31 15:03
|
*/
|
R pageWorkGuideClassify(ComActWorkGuideClassifyVO comActWorkGuideClassifyVO);
|
|
/**
|
* 办事执念-分类管理新增或修改 addWorkGuideClassify 办事执念-分类管理新增或修改
|
* @param comActWorkGuideClassifyVO 新增或修改参数
|
* @return R 返回结果
|
* @author txb
|
* @date 2021/8/31 15:03
|
*/
|
R addWorkGuideClassify(ComActWorkGuideClassifyVO comActWorkGuideClassifyVO);
|
|
/**
|
* 办事执念-分类管理删除 addWorkGuideClassify 办事执念-分类管理删除
|
* @param workGuideClassifyId 办事执念-分类管理id
|
* @return R 返回结果
|
* @author txb
|
* @date 2021/8/31 15:03
|
*/
|
R deleteWorkGuideClassify(Long workGuideClassifyId);
|
|
/**
|
* 办事指南-分类管理列表查询 getWorkGuideClassifyList 办事指南-分类管理列表查询
|
* @return R 返回结果
|
* @author txb
|
* @date 2021/8/31 15:03
|
*/
|
R getWorkGuideClassifyList(String areaCode);
|
|
}
|