| | |
| | | * 查询厂商列表 |
| | | */ |
| | | @ApiOperation("查询厂商列表") |
| | | @PreAuthorize("@ss.hasPermi('oa:manufacturer:list')") |
| | | // @PreAuthorize("@ss.hasPermi('oa:manufacturer:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo<DevManufacturerVo> list(@Validated(QueryGroup.class) DevManufacturerBo bo) { |
| | | return iDevManufacturerService.queryPageList(bo); |
| | |
| | | * 获取厂商详细信息 |
| | | */ |
| | | @ApiOperation("获取厂商详细信息") |
| | | @PreAuthorize("@ss.hasPermi('oa:manufacturer:query')") |
| | | // @PreAuthorize("@ss.hasPermi('oa:manufacturer:query')") |
| | | @GetMapping("/{id}") |
| | | public AjaxResult<DevManufacturerVo> getInfo(@ApiParam("主键") |
| | | @NotNull(message = "主键不能为空") |