广州市综治平台后端
xusd
2025-06-07 36306491396230522fa20585c2621a7fc899849a
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
31
package cn.huge.module.grid.controller;
 
import cn.huge.base.common.bo.R;
import cn.huge.module.grid.domain.dto.SpecialPersonDTO;
import cn.huge.module.grid.domain.vo.SpecialPersonVo;
import cn.huge.module.grid.service.GridSpecialPersonService;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
 
@Slf4j
@RestController
@RequestMapping("/api/thrid/grid/special")
public class GridSpecialPersonControl {
 
    @Autowired
    private GridSpecialPersonService gridSpecialPersonService;
 
    /**
     * 获取特殊人员标签列表
     *
     * @param specialPersonVo
     * @return R<SpecialPersonDTO>
     */
    @RequestMapping("/getLabelInfo")
    public R<SpecialPersonDTO> getLabelInfo(@RequestBody  SpecialPersonVo specialPersonVo) {
        return gridSpecialPersonService.getLabelInfo(specialPersonVo);
    }
}