|
@@ -0,0 +1,30 @@
|
|
|
+package org.springblade.control.controller;
|
|
|
+
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
+import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport;
|
|
|
+import io.swagger.annotations.Api;
|
|
|
+import io.swagger.annotations.ApiOperation;
|
|
|
+import lombok.AllArgsConstructor;
|
|
|
+import org.springblade.control.entity.PlanInfo;
|
|
|
+import org.springblade.core.boot.ctrl.BladeController;
|
|
|
+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;
|
|
|
+
|
|
|
+
|
|
|
+@RestController
|
|
|
+@AllArgsConstructor
|
|
|
+@RequestMapping("/plan")
|
|
|
+@Api(value = "计划接口", tags = "计划接口")
|
|
|
+public class PlanInfoController extends BladeController {
|
|
|
+
|
|
|
+ @PostMapping("/page")
|
|
|
+ @ApiOperationSupport(order = 1)
|
|
|
+ @ApiOperation(value = "计划分页查询")
|
|
|
+ public IPage<PlanInfo> page(@RequestBody PlanInfo vo) {
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+
|
|
|
+}
|