| | |
| | | return rsVo ; |
| | | } |
| | | |
| | | /** |
| | | * 根据控制器编号获取未删除的控制器数量 |
| | | * @param controllerId |
| | | * @return |
| | | */ |
| | | public Integer getRecordCountOfController(Long controllerId) { |
| | | return prControllerMapper.getRecordCountOfController(controllerId); |
| | | } |
| | | /** |
| | | * 根据控制器编号获取已绑定记录数 |
| | | * @param controllerId |
| | | * @return |
| | | */ |
| | | public Integer getBindedCount(Long controllerId) { |
| | | return prControllerMapper.getBindedCount(controllerId); |
| | | } |
| | | |
| | | /** |
| | | * 根据主键删除外键 |
| | | * @param controllerId |
| | | * @return |
| | | */ |
| | | public Integer deleteIntakeId(Long controllerId) { |
| | | return prControllerMapper.deleteIntakeId(controllerId); |
| | | } |
| | | } |