| | |
| | | package com.sandu.ximon.admin.controller; |
| | | |
| | | import com.sandu.common.domain.ResponseVO; |
| | | import com.sandu.common.object.BaseConditionVO; |
| | | import com.sandu.common.util.ResponseUtil; |
| | | import com.sandu.ximon.admin.service.LightPoleHeelingEquipmentService; |
| | | import lombok.AllArgsConstructor; |
| | |
| | | private LightPoleHeelingEquipmentService lightPoleHeelingEquipmentService; |
| | | |
| | | @PostMapping("/list") |
| | | public ResponseVO<Object> LightPoleHeelingEquipmentList() { |
| | | return ResponseUtil.success(lightPoleHeelingEquipmentService.LightPoleHeelingEquipmentList()); |
| | | public ResponseVO<Object> LightPoleHeelingEquipmentList(BaseConditionVO baseConditionVO) { |
| | | return ResponseUtil.successPage(lightPoleHeelingEquipmentService.LightPoleHeelingEquipmentList(baseConditionVO)); |
| | | } |
| | | |
| | | } |