| 12345678910111213141516171819202122232425262728 |
- package controller
- import (
- "github.com/gin-gonic/gin"
- )
- // 灯随车走分组管理对象
- var OnDemandGroup = new(onDemandGroupCtl)
- type onDemandGroupCtl struct{}
- func (c *onDemandGroupCtl) Detail(ctx *gin.Context) {
- }
- func (c *onDemandGroupCtl) List(ctx *gin.Context) {
- }
- func (c *onDemandGroupCtl) CreateOrUpdate(ctx *gin.Context) {
- }
- func (c *onDemandGroupCtl) Remove(ctx *gin.Context) {
- }
- func (c *onDemandGroupCtl) GetList(ctx *gin.Context) {
- }
- func (c *onDemandGroupCtl) Count(ctx *gin.Context) {
- }
|