12345678910111213141516171819202122 |
- package vip.xiaonuo.modular.energy.controller;
- import org.springframework.web.bind.annotation.CrossOrigin;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.RestController;
- /**
- * <p>
- * 能耗电表 前端控制器
- * </p>
- *
- * @author author
- * @since 2023-12-06
- */
- @RestController
- @RequestMapping("/energy-electricity")
- @CrossOrigin
- public class EnergyElectricityController {
- }
|