| | |
| | | * @date 2021年04月23日 9:05 |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/pre/module") |
| | | @RequestMapping("/model/pre/module") |
| | | public class DmModuleController { |
| | | |
| | | @Autowired |
| | |
| | | /** |
| | | * 管网信息 |
| | | */ |
| | | @GetMapping("/get") |
| | | public CommonResult<DmModuleEntity> info(@RequestParam("id") String id){ |
| | | DmModuleEntity module = dmModuleService.selectById(id); |
| | | @GetMapping("/get/{id}") |
| | | public CommonResult<DmModuleEntity> info(@PathVariable("id") String id){ |
| | | DmModuleEntity info = dmModuleService.selectById(id); |
| | | |
| | | return success(module); |
| | | return success(info); |
| | | } |
| | | |
| | | /** |