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

package couponrpc
import "testing"
func Test_getCoupon(t *testing.T) {
dbname := "shop_v2"
couponId := "4"
res, err := GetCouponInfo(dbname, couponId)
t.Log(res)
t.Log(err)
}