using AlibabaSDK.Api; using AlibabaSDK.Response; using System; using System.Collections.Generic; using System.Text; namespace AlibabaSDK.Request { /// ///关注商品 /// public class AlibabaProductFollowRequest : IAlibabaApiRequest { public object ErrorObj() { return new AlibabaProductFollowResponse(); } public string GetApiName() { return "/param2/1/com.alibaba.product/alibaba.product.follow"; } public Dictionary GetParameters() { Dictionary dic = new Dictionary(); dic.Add("productId", productId); return dic; } /// /// 商品id /// public long productId { get; set; } public void Validate() { throw new NotImplementedException(); } } }