| 12345678910111213141516171819202122232425262728293031323334353637 |
- package controller
- import (
- "github.com/gin-gonic/gin"
- )
- // 灯随车走传感器管理对象
- var OnDemandSensor = new(onDemandSensorCtl)
- type onDemandSensorCtl struct{}
- func (c *onDemandSensorCtl) Detail(ctx *gin.Context) {
- }
- func (c *onDemandSensorCtl) List(ctx *gin.Context) {
- }
- func (c *onDemandSensorCtl) CreateOrUpdate(ctx *gin.Context) {
- }
- func (c *onDemandSensorCtl) Remove(ctx *gin.Context) {
- }
- func (c *onDemandSensorCtl) ImportExcel(ctx *gin.Context) {
- }
- func (c *onDemandSensorCtl) ExportExcel(ctx *gin.Context) {
- }
- func (c *onDemandSensorCtl) ExportTemplate(ctx *gin.Context) {
- }
- func (c *onDemandSensorCtl) GetList(ctx *gin.Context) {
- }
- func (c *onDemandSensorCtl) Enable(ctx *gin.Context) {
- }
|