xiongan-meeting/ics-admin/src/main/java/com/ics/admin/controller/ClueInvestigationController.java
2024-01-23 16:42:27 +08:00

85 lines
2.6 KiB
Java

package com.ics.admin.controller;
import com.ics.admin.domain.ClueInvestigation;
import com.ics.admin.service.IClueInvestigationService;
import com.ics.common.core.controller.BaseController;
import com.ics.common.core.domain.R;
import com.ics.common.utils.ValidatorUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import org.wf.jwtp.annotation.RequiresPermissions;
/**
* 线索跟进 提供者
*
* @author ics
* @date 2021-03-23
*/
@RestController
@RequestMapping("/admin/clueInvestigation")
public class ClueInvestigationController extends BaseController {
@Autowired
private IClueInvestigationService clueInvestigationService;
/**
* 查询线索跟进
*/
@RequiresPermissions("admin:investigation:view")
@GetMapping("get/{id}")
public ClueInvestigation get(@PathVariable("id") Long id) {
return clueInvestigationService.selectClueInvestigationById(id);
}
/**
* 查询线索跟进列表
*/
@RequiresPermissions("admin:investigation:list")
@GetMapping("list")
public R list(ClueInvestigation clueInvestigation) {
startPage();
return result(clueInvestigationService.selectClueInvestigationList(clueInvestigation));
}
/**
* 查询我的线索跟进列表
*/
@RequiresPermissions("admin:investigation:list")
@GetMapping("myList")
public R myList(ClueInvestigation clueInvestigation) {
startPage();
clueInvestigation.setUserId(getCurrentUserId());
return result(clueInvestigationService.selectClueInvestigationList(clueInvestigation));
}
/**
* 新增保存线索跟进
*/
@RequiresPermissions("admin:investigation:add")
@PostMapping("save")
public R addSave(@RequestBody ClueInvestigation clueInvestigation) {
ValidatorUtils.validateEntity(clueInvestigation);
clueInvestigation.setClueId(clueInvestigation.getId());
return toAjax(clueInvestigationService.insertClueInvestigation(clueInvestigation));
}
/**
* 修改保存线索跟进
*/
@RequiresPermissions("admin:investigation:edit")
@PostMapping("update")
public R editSave(@RequestBody ClueInvestigation clueInvestigation) {
return toAjax(clueInvestigationService.updateClueInvestigation(clueInvestigation));
}
/**
* 删除线索跟进
*/
@RequiresPermissions("admin:investigation:remove")
@PostMapping("remove")
public R remove(String ids) {
return toAjax(clueInvestigationService.deleteClueInvestigationByIds(ids));
}
}