Compare commits
No commits in common. "6b0655bc5684934f8e025a07071efe66ff13ea2b" and "6f379fe01f8b60fac0e638009b6a3fe3276c4a4c" have entirely different histories.
6b0655bc56
...
6f379fe01f
|
|
@ -37,8 +37,8 @@ public class OrgEquipmentController {
|
|||
|
||||
@ApiOperation("查询装备信息详情")
|
||||
@GetMapping("/get")
|
||||
public SingleResponse<OrgEquipmentCO> get(@ApiParam("主键ID") @RequestParam String id) {
|
||||
return orgEquipmentApi.get(Long.parseLong(id));
|
||||
public SingleResponse<OrgEquipmentCO> get(@ApiParam("主键ID") @RequestBody Long id) {
|
||||
return orgEquipmentApi.get(id);
|
||||
}
|
||||
|
||||
@ApiOperation("修改装备信息")
|
||||
|
|
|
|||
Loading…
Reference in New Issue