优惠券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.

13 lines
184 B

2 years ago
  1. package couponrpc
  2. import "testing"
  3. func Test_getCoupon(t *testing.T) {
  4. dbname := "shop_v2"
  5. couponId := "4"
  6. res, err := GetCouponInfo(dbname, couponId)
  7. t.Log(res)
  8. t.Log(err)
  9. }