Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- 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)
- }
|