package com.dsh.other.controller;
|
|
import com.dsh.other.model.BaseVo;
|
import com.dsh.other.service.ISiteService;
|
import com.dsh.other.util.ResultUtil;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RestController;
|
|
import java.util.List;
|
|
/**
|
* @author zhibing.pu
|
* @date 2023/7/13 16:50
|
*/
|
@RestController
|
@RequestMapping("")
|
public class SiteController {
|
|
@Autowired
|
private ISiteService siteService;
|
|
// @Autowired
|
// private
|
//
|
//
|
//
|
// public ResultUtil<List<BaseVo>> querySiteType(){
|
// try {
|
//
|
// }catch (Exception e){
|
// e.printStackTrace();
|
// return ResultUtil.runErr();
|
// }
|
// }
|
}
|