27 lines
608 B
Java
27 lines
608 B
Java
|
package com.mosty.yjzl.controller;
|
||
|
|
||
|
import io.swagger.annotations.Api;
|
||
|
import lombok.AllArgsConstructor;
|
||
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||
|
import org.springframework.web.bind.annotation.RestController;
|
||
|
|
||
|
/**
|
||
|
* @author zhangzhao
|
||
|
* @description 指导巡逻方格点位必到点巡逻任务接口
|
||
|
* @modifier zhangzhao
|
||
|
* @modifiedTime 2025/09/06 19:38
|
||
|
* @since 2025/09/06 19:38
|
||
|
*/
|
||
|
@Api(tags = {"指导巡逻-方格点位必到点巡逻任务接口"})
|
||
|
@RestController
|
||
|
@AllArgsConstructor
|
||
|
@RequestMapping("/tbZdxlFgdwBddxlrw")
|
||
|
public class TbZdxlFgdwBddxlrwController {
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
}
|