|
|
@ -31,6 +31,7 @@ import com.elink.esua.epdc.dto.personroom.form.EpidemicPlotCoordinateFormDTO; |
|
|
|
import com.elink.esua.epdc.dto.personroom.result.EpidemicPlotCoordinateResultDTO; |
|
|
|
import com.elink.esua.epdc.vaccine.personroom.excel.EpidemicPlotCoordinateExcel; |
|
|
|
import com.elink.esua.epdc.vaccine.personroom.service.EpidemicPlotCoordinateService; |
|
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
import org.springframework.web.bind.annotation.*; |
|
|
|
import org.springframework.web.multipart.MultipartFile; |
|
|
@ -46,6 +47,7 @@ import java.util.Map; |
|
|
|
* @author zhangyuan qu@elink-cn.com |
|
|
|
* @since v1.0.0 2021-07-09 |
|
|
|
*/ |
|
|
|
@Slf4j |
|
|
|
@RestController |
|
|
|
@RequestMapping("epidemicplotcoordinate") |
|
|
|
public class PlotCoordinateController { |
|
|
@ -138,6 +140,7 @@ public class PlotCoordinateController { |
|
|
|
*/ |
|
|
|
@GetMapping("getPlotOptionApp") |
|
|
|
public Result<List<DictOptionDTO>> getPlotOptionApp(@RequestBody EpidemicPlotCoordinateDTO formDTO) { |
|
|
|
log.info("###############小区#############gridId:"+formDTO.getGridId()); |
|
|
|
List<DictOptionDTO> list = epidemicPlotCoordinateService.getPlotOption(formDTO); |
|
|
|
return new Result<List<DictOptionDTO>>().ok(list); |
|
|
|
} |
|
|
|