@@ -0,0 +1,20 @@ | |||
package com.tuoheng.admin.controller; | |||
import com.tuoheng.admin.service.IInspectionFileService; | |||
import org.springframework.beans.factory.annotation.Autowired; | |||
import org.springframework.web.bind.annotation.RequestMapping; | |||
import org.springframework.web.bind.annotation.RestController; | |||
/** | |||
* @Author ChengWang | |||
* @Date 2022/11/29 | |||
*/ | |||
@RestController | |||
@RequestMapping("/inspectionFile") | |||
public class InspectionFileController { | |||
@Autowired | |||
private IInspectionFileService iInspectionFileService; | |||
} |
@@ -69,7 +69,7 @@ public class StructureController { | |||
} | |||
/** | |||
* 根据经纬度获取构造物信息 | |||
* 根据登录人获取构造物信息列表 | |||
* @return | |||
*/ | |||
@GetMapping("/getSectionInfo") |
@@ -1,5 +1,8 @@ | |||
package com.tuoheng.admin.mapper; | |||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; | |||
import com.tuoheng.admin.entity.InspectionFile; | |||
/** | |||
* 【请填写功能名称】Mapper接口 | |||
* | |||
@@ -7,6 +10,6 @@ package com.tuoheng.admin.mapper; | |||
* @author wanjing | |||
* @date 2022-11-23 | |||
*/ | |||
public interface InspectionFileMapper { | |||
public interface InspectionFileMapper extends BaseMapper<InspectionFile> { | |||
} |
@@ -0,0 +1,8 @@ | |||
package com.tuoheng.admin.service; | |||
/** | |||
* @Author ChengWang | |||
* @Date 2022/11/29 | |||
*/ | |||
public interface IInspectionFileService { | |||
} |
@@ -0,0 +1,14 @@ | |||
package com.tuoheng.admin.service.impl; | |||
import com.tuoheng.admin.service.IInspectionFileService; | |||
import lombok.extern.slf4j.Slf4j; | |||
import org.springframework.stereotype.Service; | |||
/** | |||
* @Author ChengWang | |||
* @Date 2022/11/29 | |||
*/ | |||
@Service | |||
@Slf4j | |||
public class InspectionFileServiceImpl implements IInspectionFileService { | |||
} |