groupRelevanceLampPole.go 470 B

12345678910111213141516171819202122
  1. package controller
  2. import (
  3. "github.com/gin-gonic/gin"
  4. )
  5. // 灯随车走灯杆关联分组管理对象
  6. var GroupRelevanceLampPole = new(groupRelevanceLampPoleCtl)
  7. type groupRelevanceLampPoleCtl struct{}
  8. func (c *groupRelevanceLampPoleCtl) Detail(ctx *gin.Context) {
  9. }
  10. func (c *groupRelevanceLampPoleCtl) List(ctx *gin.Context) {
  11. }
  12. func (c *groupRelevanceLampPoleCtl) Setting(ctx *gin.Context) {
  13. }
  14. func (c *groupRelevanceLampPoleCtl) Remove(ctx *gin.Context) {
  15. }