ziwen 1 year ago
parent
commit
bc8ea70da0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      routers/census.go

+ 1 - 1
routers/census.go

@@ -10,7 +10,7 @@ func InitCensus(rg *gin.RouterGroup) {
 	// 商品到款统计
 	inv := new(census.InvoicePaymentController)
 	invGroup := rg.Group("invoice_payment/").Use(middleware.Token())
-	invGroup.GET("list2", inv.List)
+	invGroup.GET("list", inv.List)
 	invGroup.GET("not_invoice/list", inv.NotInvoiceList)
 	invGroup.GET("not_payment/list", inv.NotPaymentList)
 	invGroup.GET("income/list", inv.IncomeList)