rent_computer_log.go 457 B

123456789101112131415161718
  1. package rentComputer
  2. import (
  3. "github.com/gin-gonic/gin"
  4. v1 "log-server/api/v1"
  5. )
  6. type RentComputerLogRouter struct {
  7. }
  8. func (r *RentComputerLogRouter) InitRentComputerLogRouter(Router *gin.RouterGroup) {
  9. excelRouter := Router.Group("rentComputerLog")
  10. rentComputerLogApi := v1.ApiGroupApp.RentComputerApiGroup.ApiRentComputerLog
  11. {
  12. excelRouter.POST("queryRentComputerLogByPcNum", rentComputerLogApi.QueryRentComputerLogByPcNum) //查询记录
  13. }
  14. }