| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- package com.dk.mdm.controller.mst;
- import com.dk.mdm.model.pojo.mst.TemplatePrint;
- import com.dk.mdm.service.mst.TemplatePrintService;
- import com.dk.common.controller.BaseController;
- import com.dk.common.response.ResponseResultVO;
- import com.dk.common.service.BaseService;
- import io.swagger.annotations.Api;
- 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;
- @Api(tags = "API接口")
- @RestController
- @RequestMapping("mst/template_print")
- public class TemplatePrintController {
- @Autowired
- private TemplatePrintService templatePrintService;
- // /*
- // * @desc : 打印模板数据源
- // * @author : 沈博
- // * @date : 2022/6/28 9:10
- // */
- // @PostMapping("select_data_source")
- // public ResponseResultVO<List<Map<String,Object>>> selectDataSource(){
- // return templatePrintService.selectDataSource();
- // }
- //
- // /**
- // * @desc : 选择打印模板查询
- // * @author : 沈博
- // * @date : 2022/6/29 9:58
- // */
- // @PostMapping("select_choose_template")
- // public ResponseResultVO<List<TemplatePrint>> selectChooseTemplate(@RequestBody TemplatePrint templatePrint){
- // return templatePrintService.selectChooseTemplate(templatePrint);
- // }
-
- }
|