智莺生活mysql模型库
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.
 
 
 
 

19 lines
381 B

  1. package main
  2. import (
  3. "code.fnuoos.com/go_rely_warehouse/zyos_go_pay.git/pay"
  4. "fmt"
  5. )
  6. func main() {
  7. err := pay.Init("119.23.182.117:3306", "zyos_website", "root", "Fnuo123com@")
  8. if err != nil {
  9. fmt.Println(">>>>>>>>>>>>>>>", err)
  10. }
  11. channel, err := pay.JudgePayChannel("35618318", "mall")
  12. if err != nil {
  13. fmt.Println("<<<<<<<<<<<<<<<<", err)
  14. }
  15. fmt.Println(channel)
  16. }