wisdomGatewayController.go 724 B

12345678910111213141516171819202122232425262728293031323334353637
  1. package controller
  2. import (
  3. "github.com/gin-gonic/gin"
  4. )
  5. // 智慧网关基本信息管理对象
  6. var WisdomGateway = new(wisdomGatewayCtl)
  7. type wisdomGatewayCtl struct{}
  8. func (c *wisdomGatewayCtl) Detail(ctx *gin.Context) {
  9. }
  10. func (c *wisdomGatewayCtl) List(ctx *gin.Context) {
  11. }
  12. func (c *wisdomGatewayCtl) CreateOrUpdate(ctx *gin.Context) {
  13. }
  14. func (c *wisdomGatewayCtl) Remove(ctx *gin.Context) {
  15. }
  16. func (c *wisdomGatewayCtl) ImportExcel(ctx *gin.Context) {
  17. }
  18. func (c *wisdomGatewayCtl) ExportExcel(ctx *gin.Context) {
  19. }
  20. func (c *wisdomGatewayCtl) ExportTemplate(ctx *gin.Context) {
  21. }
  22. func (c *wisdomGatewayCtl) GetList(ctx *gin.Context) {
  23. }
  24. func (c *wisdomGatewayCtl) GetRelevanceDetail(ctx *gin.Context) {
  25. }