This commit is contained in:
linfso 2024-06-06 14:50:33 +08:00
parent 843458c100
commit af5c27455d

View File

@ -98,7 +98,7 @@ public class EmisProblemTypeController extends EmisBaseController
*/
@PreAuthorize("@ss.hasPermi('emis:emisProblemType:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id)
public AjaxResult getInfo(@PathVariable("id") Integer id)
{
return AjaxResult.success(emisProblemTypeService.selectEmisProblemTypeById(id));
}