| | |
| | | @AllArgsConstructor |
| | | @RequestMapping("blade-propertyDistrictUser/propertyDistrictUser") |
| | | @Api(value = "物业公司人员派驻小区关联表", tags = "物业公司人员派驻小区关联表接口") |
| | | public class PropertyDistrictUserController extends BladeController { |
| | | public class PropertyDistrictUserController { |
| | | |
| | | private final IPropertyDistrictUserService propertyDistrictUserService; |
| | | |
| | |
| | | @ApiOperationSupport(order = 7) |
| | | @ApiOperation(value = "逻辑删除", notes = "传入ids") |
| | | public R remove(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) { |
| | | return R.status(propertyDistrictUserService.deleteLogic(Func.toLongList(ids))); |
| | | return R.status(propertyDistrictUserService.removeByIds(Func.toLongList(ids))); |
| | | } |
| | | |
| | | |