zhaojs
2023-09-15 fc13938ff90213060532d99a600dea4a84456885
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
using AlibabaSDK.Api;
using AlibabaSDK.Response;
using System;
using System.Collections.Generic;
using System.Text;
 
namespace AlibabaSDK.Request
{
    public class FenXiaoOutproductRelationAddRequest : IAlibabaApiRequest<FenXiaoOutproductRelationAddResponse>
    {
        public object ErrorObj()
        {
            return new FenXiaoOutproductRelationAddResponse();
        }
 
        public string GetApiName()
        {
            return "/param2/1/com.alibaba.fenxiao/alibaba.fenxiao.buyer.outproduct.relation.add";
        }
 
        public Dictionary<string, object> GetParameters()
        {
            Dictionary<string, object> dic = new Dictionary<string, object>();
            dic.Add("channel", channel);
            dic.Add("offerId", offerId);
            dic.Add("outItemCode", outItemCode);
            dic.Add("outShopCode", outShopCode);
            return dic;
        }
 
        /// <summary>
        /// 淘宝-thyny,天猫-tm,淘特-taote,阿里巴巴C2M-c2m,京东-jingdong,拼多多-pinduoduo,微信-weixin,跨境-kuajing,快手-kuaishou,有赞-youzan,抖音-douyin,寺库-siku,美团团好货-meituan,小红书-xiaohongshu,当当-dangdang,苏宁-suning,大V店-davdian,行云-xingyun,蜜芽-miya,菠萝派商城-boluo,快团团-kuaituantuan,其他-other
        /// </summary>
        public string channel { get; set; }
        /// <summary>
        /// 上游1688商品id
        /// </summary>
        public long offerId { get; set; }
        /// <summary>
        /// 下游外部商品码
        /// </summary>
        public string outItemCode { get; set; }
        /// <summary>
        /// 下游店铺code
        /// </summary>
        public string outShopCode { get; set; }
 
        public void Validate()
        {
 
        }
    }
}