完成气站标准资源全页管理改造
This commit is contained in:
@@ -72,9 +72,12 @@ func registerGasBusinessRoutes(group *gin.RouterGroup) {
|
||||
contractProduct := group.Group("/gasorder_contract_product")
|
||||
contractProduct.GET("", gaslogic.ListGasorderContractProduct)
|
||||
contractProduct.POST("", gaslogic.BindGasorderContractProduct)
|
||||
contractProduct.GET("/:identity", gaslogic.GetGasorderContractProduct)
|
||||
contractProduct.POST("/:identity/unbind", gaslogic.UnbindGasorderContractProduct)
|
||||
group.GET("/gasorder_contract_revision", gaslogic.ListGasorderContractRevision)
|
||||
group.GET("/gasorder_contract_revision/:identity", gaslogic.GetGasorderContractRevision)
|
||||
group.GET("/product_info", gaslogic.ListContractProductCandidate)
|
||||
group.GET("/product_info/:identity", gaslogic.GetContractProductCandidate)
|
||||
|
||||
order := group.Group("/gasorder_basic")
|
||||
order.GET("", gaslogic.ListGasorderBasic)
|
||||
@@ -88,14 +91,22 @@ func registerGasBusinessRoutes(group *gin.RouterGroup) {
|
||||
order.POST("/:identity/cancel", gaslogic.GasorderCancel)
|
||||
|
||||
group.GET("/wallet_basic", gaslogic.ListWalletBasic)
|
||||
group.GET("/wallet_basic/:identity", gaslogic.GetWalletBasic)
|
||||
group.GET("/wallet_bank", gaslogic.ListWalletBank)
|
||||
group.GET("/wallet_bank/:identity", gaslogic.GetWalletBank)
|
||||
group.GET("/payment_order", gaslogic.ListPaymentOrder)
|
||||
group.GET("/payment_order/:identity", gaslogic.GetPaymentOrder)
|
||||
group.GET("/wallet_record", gaslogic.ListWalletRecord)
|
||||
group.GET("/wallet_record/:identity", gaslogic.GetWalletRecord)
|
||||
group.GET("/payment_refund", gaslogic.ListPaymentRefund)
|
||||
group.GET("/payment_refund/:identity", gaslogic.GetPaymentRefund)
|
||||
group.GET("/wallet_apply_cash", gaslogic.ListWalletApplyCash)
|
||||
group.GET("/wallet_apply_cash/:identity", gaslogic.GetWalletApplyCash)
|
||||
group.POST("/wallet_apply_cash", gaslogic.CreateWalletApplyCash)
|
||||
group.GET("/fin_settlement", gaslogic.ListFinSettlement)
|
||||
group.GET("/fin_settlement/:identity", gaslogic.GetFinSettlement)
|
||||
group.GET("/fin_reconciliation", gaslogic.ListFinReconciliation)
|
||||
group.GET("/fin_reconciliation/:identity", gaslogic.GetFinReconciliation)
|
||||
|
||||
ticket := group.Group("/cs_ticket")
|
||||
ticket.GET("", gaslogic.ListTicket)
|
||||
|
||||
Reference in New Issue
Block a user