| | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 【请填写功能名称】Controller |
| | | * 患者预约记录Controller |
| | | * |
| | | * @author lihu |
| | | * @date 2025-06-24 |
| | | */ |
| | | @Api("【请填写功能名称】") |
| | | @Api("患者预约记录") |
| | | @RestController |
| | | @RequestMapping("/smartor/record") |
| | | public class PatReservationRecordController extends BaseController { |
| | |
| | | private IPatReservationRecordService patReservationRecordService; |
| | | |
| | | /** |
| | | * 查询【请填写功能名称】列表 |
| | | * 查询患者预约记录列表 |
| | | */ |
| | | @ApiOperation("查询【请填写功能名称】列表") |
| | | @ApiOperation("查询患者预约记录列表") |
| | | //@PreAuthorize("@ss.hasPermi('smartor:record:list')") |
| | | @PostMapping("/list") |
| | | public TableDataInfo list(@RequestBody PatReservationRecord patReservationRecord) { |
| | |
| | | } |
| | | |
| | | /** |
| | | * 导出【请填写功能名称】列表 |
| | | * 导出患者预约记录列表 |
| | | */ |
| | | @ApiOperation("导出【请填写功能名称】列表") |
| | | @ApiOperation("导出患者预约记录列表") |
| | | //@PreAuthorize("@ss.hasPermi('smartor:record:export')") |
| | | @Log(title = "【请填写功能名称】", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | |
| | | /** |
| | | * 获取【请填写功能名称】详细信息 |
| | | */ |
| | | @ApiOperation("获取【请填写功能名称】详细信息") |
| | | @ApiOperation("获取患者预约记录详细信息") |
| | | //@PreAuthorize("@ss.hasPermi('smartor:record:query')") |
| | | @GetMapping(value = "/getInfo/{id}") |
| | | public AjaxResult getInfo(@PathVariable("id") Long id) { |
| | |
| | | } |
| | | |
| | | /** |
| | | * 新增【请填写功能名称】 |
| | | * 新增患者预约记录 |
| | | */ |
| | | @ApiOperation("新增【请填写功能名称】") |
| | | @ApiOperation("新增患者预约记录") |
| | | //@PreAuthorize("@ss.hasPermi('smartor:record:add')") |
| | | @Log(title = "【请填写功能名称】", businessType = BusinessType.INSERT) |
| | | @PostMapping("/add") |
| | |
| | | } |
| | | |
| | | /** |
| | | * 修改【请填写功能名称】 |
| | | * 修改患者预约记录 |
| | | */ |
| | | @ApiOperation("修改【请填写功能名称】") |
| | | @ApiOperation("修改患者预约记录") |
| | | //@PreAuthorize("@ss.hasPermi('smartor:record:edit')") |
| | | @Log(title = "【请填写功能名称】", businessType = BusinessType.UPDATE) |
| | | @PostMapping("/edit") |
| | |
| | | } |
| | | |
| | | /** |
| | | * 删除【请填写功能名称】 |
| | | * 删除患者预约记录 |
| | | */ |
| | | @ApiOperation("删除【请填写功能名称】") |
| | | @ApiOperation("删除患者预约记录") |
| | | //@PreAuthorize("@ss.hasPermi('smartor:record:remove')") |
| | | @Log(title = "【请填写功能名称】", businessType = BusinessType.DELETE) |
| | | @GetMapping("/remove/{ids}") |