12345678910111213141516171819202122232425262728293031323334 |
- package controller
- import (
- "github.com/gin-gonic/gin"
- )
- // 配电箱基本信息管理对象
- var SwitchBox = new(switchBoxCtl)
- type switchBoxCtl struct{}
- func (c *switchBoxCtl) Detail(ctx *gin.Context) {
- }
- func (c *switchBoxCtl) List(ctx *gin.Context) {
- }
- func (c *switchBoxCtl) CreateOrUpdate(ctx *gin.Context) {
- }
- func (c *switchBoxCtl) Remove(ctx *gin.Context) {
- }
- func (c *switchBoxCtl) ImportExcel(ctx *gin.Context) {
- }
- func (c *switchBoxCtl) ExportExcel(ctx *gin.Context) {
- }
- func (c *switchBoxCtl) ExportTemplate(ctx *gin.Context) {
- }
- func (c *switchBoxCtl) GetList(ctx *gin.Context) {
- }
|