2021与蓝度共同重构项目,服务端
fix
zhanzhiqin
2022-04-14 4658117e1102431e25194ceecb64a184b3b33575
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
 
 
/**
 * 灯杆倾斜设备
 *
 * @author ZZQ
 * @date 2022/4/14 17:44
 */
@RestController
@AllArgsConstructor
@RequestMapping("/v1/admin/LightPoleHeelingEquipment")
public class LightPoleHeelingEquipmentController {
    private LightPoleHeelingEquipmentService lightPoleHeelingEquipmentService;
 
    @PostMapping("/list")
    public ResponseVO<Object> LightPoleHeelingEquipmentList(BaseConditionVO baseConditionVO) {
        return ResponseUtil.successPage(lightPoleHeelingEquipmentService.LightPoleHeelingEquipmentList(baseConditionVO));
    }
 
}