package com.fjhx.controller.example;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.fjhx.entity.example.ExampleInfo;
import com.fjhx.service.example.ExampleInfoService;
import org.springblade.core.tool.api.R;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import java.util.List;
import java.util.Map;
/**
*
* 流程实例 前端控制器
*
*
* @author ${author}
* @since 2022-08-18
*/
@RestController
@RequestMapping("/exampleInfo")
public class ExampleInfoController {
@Autowired
private ExampleInfoService exampleInfoService;
/**
* 代办
*/
@PostMapping("/getWaitingProcessingPage")
public R getWaitingProcessingPage(@RequestBody Map condition) {
Page