mirror of
https://gitee.com/elegant_wings/dbd-meeting.git
synced 2025-06-21 21:49:37 +08:00
修改了对应bug给
This commit is contained in:
parent
03f42ca89e
commit
9972376240
@ -99,12 +99,13 @@ public class RepairController extends BaseController {
|
||||
/**
|
||||
* 获取一个工单的详细信息
|
||||
*
|
||||
* @param id
|
||||
* @return
|
||||
* id 工单id
|
||||
*
|
||||
*/
|
||||
@RequiresPermissions(value = {"repair:attach:operator", "member:center:view"}, logical = Logical.OR)
|
||||
@RequestMapping("get")
|
||||
public R get(@RequestBody Long id) {
|
||||
public R get(@RequestBody Map<String, Long> map) {
|
||||
Long id = map.get("id");
|
||||
Repair repair = repairService.selectRepairById(id);
|
||||
|
||||
List<RepairAttach> list = repairAttachService.getListByRepair(id);
|
||||
|
Loading…
x
Reference in New Issue
Block a user