You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- package zhimeng_platform
-
- import (
- "applet/app/svc/platform"
- "github.com/gin-gonic/gin"
- )
-
- func WithdrawalIncome(c *gin.Context) {
- platform.WithdrawalIncome(c)
- }
- func WithdrawalList(c *gin.Context) {
- platform.WithdrawalList(c)
- }
- func WithdrawalDoing(c *gin.Context) {
- platform.WithdrawalDoing(c)
- }
- func WithdrawalOutput(c *gin.Context) {
- platform.WithdrawalOutput(c)
- }
- func WithdrawalInvoiceImg(c *gin.Context) {
- platform.WithdrawalInvoiceImg(c)
- }
- func WithdrawalBindAlipay(c *gin.Context) {
- platform.WithdrawalBindAlipay(c)
- }
|