12345678910111213141516171819202122 |
- package controller
- import (
- "github.com/gin-gonic/gin"
- )
- // 灯随车走灯杆关联分组管理对象
- var GroupRelevanceLampPole = new(groupRelevanceLampPoleCtl)
- type groupRelevanceLampPoleCtl struct{}
- func (c *groupRelevanceLampPoleCtl) Detail(ctx *gin.Context) {
- }
- func (c *groupRelevanceLampPoleCtl) List(ctx *gin.Context) {
- }
- func (c *groupRelevanceLampPoleCtl) Setting(ctx *gin.Context) {
- }
- func (c *groupRelevanceLampPoleCtl) Remove(ctx *gin.Context) {
- }
|