供应商rpc结构及公共方法
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.

17 lines
218 B

  1. package supplierrpc
  2. import (
  3. "testing"
  4. )
  5. func Test_IsOpen(t *testing.T) {
  6. siteid := "1056475"
  7. dbname := "shop_v2"
  8. key := "1"
  9. res, err := IsOpen(siteid, dbname, key)
  10. t.Log(res)
  11. t.Log(res.Value)
  12. t.Log(err)
  13. }