New file |
| | |
| | | package com.example.erp.controller.pp; |
| | | |
| | | import com.example.erp.common.Result; |
| | | import com.example.erp.service.pp.BasicDateProduceService; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | @RestController |
| | | @RequestMapping("/basicDataProduce") |
| | | public class BasicDataProduceController { |
| | | @Autowired |
| | | BasicDateProduceService basicDateProduceService; |
| | | // @PostMapping("/selectWorkBasic/{process}") |
| | | // public Result SelectWorkBasic( |
| | | // @PathVariable String process) { |
| | | // return Result.seccess(basicDateProduceService.SelectWorkBasicSv(process)); |
| | | // } |
| | | } |