You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- package com.iformall.controller;
-
- import com.iformall.common.ResultData;
- import com.iformall.dto.PageMaterialMouldDTO;
- import com.iformall.service.ApiMaterialMouldService;
- import io.swagger.annotations.Api;
- import io.swagger.annotations.ApiOperation;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.web.bind.annotation.GetMapping;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.RestController;
-
- /**
- * 背景,素材模板api
- *
- * @author xmzhao71
- * @date 2023-10-17
- */
- @Api(tags = "物料模板api")
- @RestController
- @RequestMapping("/api/materialMould")
- public class ApiMaterialMouldController extends BaseController {
-
- @Autowired
- private ApiMaterialMouldService apiMaterialMouldService;
-
- @ApiOperation("分页查询物料模板")
- @GetMapping("page")
- public ResultData pageMaterialMould(PageMaterialMouldDTO dto) {
- return new ResultData(apiMaterialMouldService.pageMaterialMould(dto));
- }
- }
|