switchBoxController.go 608 B

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