manholeCoverController.go 752 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. package controller
  2. import (
  3. "github.com/gin-gonic/gin"
  4. )
  5. // 井盖基本信息管理对象
  6. var ManholeCover = new(manholeCoverCtl)
  7. type manholeCoverCtl struct{}
  8. func (c *manholeCoverCtl) Detail(ctx *gin.Context) {
  9. }
  10. func (c *manholeCoverCtl) List(ctx *gin.Context) {
  11. }
  12. func (c *manholeCoverCtl) CreateOrUpdate(ctx *gin.Context) {
  13. }
  14. func (c *manholeCoverCtl) Remove(ctx *gin.Context) {
  15. }
  16. func (c *manholeCoverCtl) ImportExcel(ctx *gin.Context) {
  17. }
  18. func (c *manholeCoverCtl) ExportExcel(ctx *gin.Context) {
  19. }
  20. func (c *manholeCoverCtl) ExportTemplate(ctx *gin.Context) {
  21. }
  22. func (c *manholeCoverCtl) GetList(ctx *gin.Context) {
  23. }
  24. func (c *manholeCoverCtl) AllList(ctx *gin.Context) {
  25. }
  26. func (c *manholeCoverCtl) Setting(ctx *gin.Context) {
  27. }