| | |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/configItemChange/ConfigItemChange/") |
| | | @Api(tags="config_item_Change") |
| | | @Api(tags="config_item_change") |
| | | public class ConfigItemChangeController { |
| | | @Autowired |
| | | private ConfigItemChangeService configItemChangeService; |
| | |
| | | @GetMapping("getItemList") |
| | | @ApiOperation("获取入库配置项列表") |
| | | public PageResult<WarehouseConfigItem> getItemList(Long projectId,String ids) { |
| | | String type ="change_select_id"; |
| | | String type ="change"; |
| | | List<WarehouseConfigItem> resultList = configItemService.warehouseConfigList(projectId,ids,type); |
| | | return PageResult.ok(resultList); |
| | | } |