智盟项目
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.

hdl_withdrawal.go 535 B

1 year ago
12345678910111213141516171819202122232425
  1. package zhimeng_platform
  2. import (
  3. "applet/app/svc/platform"
  4. "github.com/gin-gonic/gin"
  5. )
  6. func WithdrawalIncome(c *gin.Context) {
  7. platform.WithdrawalIncome(c)
  8. }
  9. func WithdrawalList(c *gin.Context) {
  10. platform.WithdrawalList(c)
  11. }
  12. func WithdrawalDoing(c *gin.Context) {
  13. platform.WithdrawalDoing(c)
  14. }
  15. func WithdrawalOutput(c *gin.Context) {
  16. platform.WithdrawalOutput(c)
  17. }
  18. func WithdrawalInvoiceImg(c *gin.Context) {
  19. platform.WithdrawalInvoiceImg(c)
  20. }
  21. func WithdrawalBindAlipay(c *gin.Context) {
  22. platform.WithdrawalBindAlipay(c)
  23. }