onDemandGroupController.go 516 B

12345678910111213141516171819202122232425262728
  1. package controller
  2. import (
  3. "github.com/gin-gonic/gin"
  4. )
  5. // 灯随车走分组管理对象
  6. var OnDemandGroup = new(onDemandGroupCtl)
  7. type onDemandGroupCtl struct{}
  8. func (c *onDemandGroupCtl) Detail(ctx *gin.Context) {
  9. }
  10. func (c *onDemandGroupCtl) List(ctx *gin.Context) {
  11. }
  12. func (c *onDemandGroupCtl) CreateOrUpdate(ctx *gin.Context) {
  13. }
  14. func (c *onDemandGroupCtl) Remove(ctx *gin.Context) {
  15. }
  16. func (c *onDemandGroupCtl) GetList(ctx *gin.Context) {
  17. }
  18. func (c *onDemandGroupCtl) Count(ctx *gin.Context) {
  19. }