|
12345678910111213141516171819202122232425 |
- 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)
- }
|