12345678910111213141516171819202122232425262728293031323334353637383940 |
- package controller
- import (
- "github.com/gin-gonic/gin"
- )
- // 井盖基本信息管理对象
- var ManholeCover = new(manholeCoverCtl)
- type manholeCoverCtl struct{}
- func (c *manholeCoverCtl) Detail(ctx *gin.Context) {
- }
- func (c *manholeCoverCtl) List(ctx *gin.Context) {
- }
- func (c *manholeCoverCtl) CreateOrUpdate(ctx *gin.Context) {
- }
- func (c *manholeCoverCtl) Remove(ctx *gin.Context) {
- }
- func (c *manholeCoverCtl) ImportExcel(ctx *gin.Context) {
- }
- func (c *manholeCoverCtl) ExportExcel(ctx *gin.Context) {
- }
- func (c *manholeCoverCtl) ExportTemplate(ctx *gin.Context) {
- }
- func (c *manholeCoverCtl) GetList(ctx *gin.Context) {
- }
- func (c *manholeCoverCtl) AllList(ctx *gin.Context) {
- }
- func (c *manholeCoverCtl) Setting(ctx *gin.Context) {
- }
|