md
This commit is contained in:
parent
9f80b6a011
commit
c88dea3030
@ -79,7 +79,7 @@ public class EmisRegionController extends BaseController
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('emis:emisRegion:query')")
|
||||
@GetMapping(value = "/{id}")
|
||||
public AjaxResult getInfo(@PathVariable("id") Integer id)
|
||||
public AjaxResult getInfo(@PathVariable("id") Long id)
|
||||
{
|
||||
return AjaxResult.success(emisRegionService.selectEmisRegionById(id));
|
||||
}
|
||||
@ -112,7 +112,7 @@ public class EmisRegionController extends BaseController
|
||||
@PreAuthorize("@ss.hasPermi('emis:emisRegion:remove')")
|
||||
@Log(title = "四级省市区镇表", businessType = BusinessType.DELETE)
|
||||
@DeleteMapping("/{ids}")
|
||||
public AjaxResult remove(@PathVariable Integer[] ids)
|
||||
public AjaxResult remove(@PathVariable Long[] ids)
|
||||
{
|
||||
return toAjax(emisRegionService.deleteEmisRegionByIds(ids));
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user