用户接口远程调用
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.

16 lines
207 B

  1. package userrpc
  2. import (
  3. "testing"
  4. )
  5. func Test_GetBusinessInfo(t *testing.T) {
  6. site_id := ""
  7. dbname := "shop_v2"
  8. id := "5"
  9. ret, err := GetBusinessInfo(site_id, dbname, id)
  10. t.Log(ret)
  11. t.Log(err)
  12. }