lige
2023-12-04 321d07a53833dc50246ca274a04c31a8066f3575
ltkj-admin/src/main/java/com/ltkj/web/controller/system/TjTeamContactLogController.java
@@ -37,7 +37,6 @@
    /**
     * 查询团队预约沟通记录列表
     */
    @PreAuthorize("@ss.hasPermi('hosp:TjTeamContactLog:list')")
    @GetMapping("/list")
    public TableDataInfo list(TjTeamContactLog tjTeamContactLog) {
        startPage();
@@ -48,7 +47,6 @@
    /**
     * 导出团队预约沟通记录列表
     */
    @PreAuthorize("@ss.hasPermi('hosp:TjTeamContactLog:export')")
    @Log(title = "团队预约沟通记录", businessType = BusinessType.EXPORT)
    @PostMapping("/export")
    public void export(HttpServletResponse response, TjTeamContactLog tjTeamContactLog) {
@@ -60,7 +58,6 @@
    /**
     * 获取团队预约沟通记录详细信息
     */
    @PreAuthorize("@ss.hasPermi('hosp:TjTeamContactLog:query')")
    @GetMapping(value = "/{id}")
    public AjaxResult getInfo(@PathVariable("id") Long id) {
        return success(tjTeamContactLogService.selectTjTeamContactLogById(id));
@@ -69,7 +66,6 @@
    /**
     * 新增团队预约沟通记录
     */
    @PreAuthorize("@ss.hasPermi('hosp:TjTeamContactLog:add')")
    @Log(title = "团队预约沟通记录", businessType = BusinessType.INSERT)
    @PostMapping
    public AjaxResult add(@RequestBody TjTeamContactLog tjTeamContactLog) {
@@ -79,7 +75,6 @@
    /**
     * 修改团队预约沟通记录
     */
    @PreAuthorize("@ss.hasPermi('hosp:TjTeamContactLog:edit')")
    @Log(title = "团队预约沟通记录", businessType = BusinessType.UPDATE)
    @PutMapping
    public AjaxResult edit(@RequestBody TjTeamContactLog tjTeamContactLog) {
@@ -89,7 +84,6 @@
    /**
     * 删除团队预约沟通记录
     */
    @PreAuthorize("@ss.hasPermi('hosp:TjTeamContactLog:remove')")
    @Log(title = "团队预约沟通记录", businessType = BusinessType.DELETE)
    @DeleteMapping("/{ids}")
    public AjaxResult remove(@PathVariable Long[] ids) {