更新代码
This commit is contained in:
@ -29,6 +29,19 @@ public class BizBidNoticeController {
|
|||||||
@Autowired
|
@Autowired
|
||||||
private IBaseCacheUserService iBaseCacheUserService;
|
private IBaseCacheUserService iBaseCacheUserService;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询发布数据
|
||||||
|
*
|
||||||
|
* @param id
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
@ApiOperation("根据id查询")
|
||||||
|
@GetMapping("/{id}")
|
||||||
|
public BaseResponse<BizBidNotice> getById(@PathVariable String id) {
|
||||||
|
return BaseResponse.success(ibizBidNoticeService.getById(id));
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 查询发布数据
|
* 查询发布数据
|
||||||
*
|
*
|
||||||
|
Reference in New Issue
Block a user