1234567891011121314151617181920 |
- package com.sky.building.controller;
- import lombok.extern.slf4j.Slf4j;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.RestController;
- /**
- * @author LunCe
- * 智慧楼宇 -------数智双碳
- */
- @Slf4j
- @RestController
- @RequestMapping("live")
- public class BuildingBicarbonController {
- // @Autowired
- // private BuildingBicarbonService buildingBicarbonService;
- }
|