DeviceAttributeController.java 341 B

123456789101112131415161718192021
  1. package com.bizmatics.controller.web;
  2. import org.springframework.web.bind.annotation.RequestMapping;
  3. import org.springframework.stereotype.Controller;
  4. /**
  5. * <p>
  6. * 设备属性 前端控制器
  7. * </p>
  8. *
  9. * @author ya
  10. * @since 2021-09-24
  11. */
  12. @Controller
  13. @RequestMapping("/deviceAttribute")
  14. public class DeviceAttributeController {
  15. }