captureUintController.go 630 B

12345678910111213141516171819202122232425262728293031323334
  1. package controller
  2. import (
  3. "github.com/gin-gonic/gin"
  4. )
  5. // 抓拍单元管理对象
  6. var CaptureUint = new(captureUintCtl)
  7. type captureUintCtl struct{}
  8. func (c *captureUintCtl) Detail(ctx *gin.Context) {
  9. }
  10. func (c *captureUintCtl) CaptureList(ctx *gin.Context) {
  11. }
  12. func (c *captureUintCtl) CaptureSubmit(ctx *gin.Context) {
  13. }
  14. func (c *captureUintCtl) PointList(ctx *gin.Context) {
  15. }
  16. func (c *captureUintCtl) PointSubmit(ctx *gin.Context) {
  17. }
  18. func (c *captureUintCtl) Remove(ctx *gin.Context) {
  19. }
  20. func (c *captureUintCtl) CaptureGetList(ctx *gin.Context) {
  21. }
  22. func (c *captureUintCtl) PointGetList(ctx *gin.Context) {
  23. }