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>> selectDataSource(){ // return templatePrintService.selectDataSource(); // } // // /** // * @desc : 选择打印模板查询 // * @author : 沈博 // * @date : 2022/6/29 9:58 // */ // @PostMapping("select_choose_template") // public ResponseResultVO> selectChooseTemplate(@RequestBody TemplatePrint templatePrint){ // return templatePrintService.selectChooseTemplate(templatePrint); // } }