| | |
| | | @ApiImplicitParam(name = Constant.Q.ORDER_FIELD, value = Constant.QV.ORDER_FIELD, dataType = Constant.QT.STRING), |
| | | @ApiImplicitParam(name = Constant.Q.ORDER, value = Constant.QV.ORDER, dataType = Constant.QT.STRING), |
| | | @ApiImplicitParam(name = "name", value = "名称", dataType = Constant.QT.STRING, format = "NAME^LK"), |
| | | @ApiImplicitParam(name = "nodeType", value = "节点类型", dataType = Constant.QT.STRING, format = "node_type^EQ"), |
| | | @ApiImplicitParam(name = "productType", value = "节点类型", dataType = Constant.QT.STRING, format = "product_type^EQ"), |
| | | @ApiImplicitParam(name = "pid", value = "上级ID", dataType = Constant.QT.STRING) |
| | | }) |
| | | public Result<List<XhProductModel>> page(@ApiIgnore @QueryParam QueryFilter queryFilter){ |
| | |
| | | return Result.ok(list); |
| | | } |
| | | |
| | | @GetMapping("getTaskProductList") |
| | | public Result<List<XhProductModel>> getTaskProductList() { |
| | | List<XhProductModel> list = xhProductModelService.getTaskProductList(); |
| | | return Result.ok(list); |
| | | } |
| | | |
| | | @PostMapping |
| | | @ApiOperation("新增") |
| | | @LogOperation("新增") |