| | |
| | | /** |
| | | * 查询患者血糖记录列表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:bloodsugar:list')") |
| | | //@PreAuthorize("@ss.hasPermi('system:bloodsugar:list')") |
| | | @PostMapping("/list") |
| | | @ApiOperation("查询患者血糖记录列表") |
| | | public TableDataInfo list(@RequestBody PatMedBloodsugar patMedBloodsugar) { |
| | |
| | | * 导出患者血糖记录列表 |
| | | */ |
| | | @ApiOperation("导出患者血糖记录列表") |
| | | @PreAuthorize("@ss.hasPermi('system:bloodsugar:export')") |
| | | //@PreAuthorize("@ss.hasPermi('system:bloodsugar:export')") |
| | | @Log(title = "导出患者血糖记录列表", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, PatMedBloodsugar patMedBloodsugar) { |
| | |
| | | /** |
| | | * 获取患者血糖记录详细信息 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:bloodsugar:query')") |
| | | //@PreAuthorize("@ss.hasPermi('system:bloodsugar:query')") |
| | | @GetMapping(value = "/{bloodsugarid}") |
| | | @ApiOperation("获取患者血糖记录详细信息") |
| | | @ApiImplicitParam(name = "bloodsugarid", value = "主键ID", dataType = "long", dataTypeClass = Long.class) |
| | |
| | | /** |
| | | * 新增患者血糖记录 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:bloodsugar:add')") |
| | | //@PreAuthorize("@ss.hasPermi('system:bloodsugar:add')") |
| | | @Log(title = "新增患者血糖记录", businessType = BusinessType.INSERT) |
| | | @PostMapping("/add") |
| | | @ApiOperation("新增患者血糖记录") |
| | |
| | | /** |
| | | * 修改患者血糖记录 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:bloodsugar:edit')") |
| | | //@PreAuthorize("@ss.hasPermi('system:bloodsugar:edit')") |
| | | @Log(title = "患者血糖记录", businessType = BusinessType.UPDATE) |
| | | @PostMapping("/edit") |
| | | @ApiOperation("修改患者血糖记录") |
| | |
| | | * 删除患者血糖记录 |
| | | */ |
| | | @ApiOperation("删除患者血糖记录") |
| | | @PreAuthorize("@ss.hasPermi('system:bloodsugar:remove')") |
| | | //@PreAuthorize("@ss.hasPermi('system:bloodsugar:remove')") |
| | | @Log(title = "患者血糖记录", businessType = BusinessType.DELETE) |
| | | @GetMapping("/remove/{bloodsugarids}") |
| | | @ApiImplicitParam(name = "bloodsugarids", value = "主键ID集合", dataType = "long", dataTypeClass = Array.class) |