using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Api.Framework.EntityTmp.Douyin { public class DyOrderInfo { public List orders { get; set; } /// /// 下一页索引 /// public string cursor { get; set; } } public class Orders { public Pidinfo pid_info { get; set; } /// /// 订单号 /// public string order_id { get; set; } /// /// 商品id /// public string product_id { get; set; } /// /// 商品名称 /// public string product_name { get; set; } /// /// 商品图片URL /// public string product_img { get; set; } /// /// 作者账号昵称(抖音/火山作者) /// public string author_account { get; set; } /// /// 作者抖店open_id /// public string author_openid { get; set; } /// /// 商家名称 /// public string shop_name { get; set; } /// /// 订单支付金额,单位分 /// public double total_pay_amount { get; set; } /// /// 达人佣金率,此处保存为真实数据x1万之后,如真实是0.35,这里是3500 /// public double commission_rate { get; set; } /// /// 达人预估佣金收入,单位分 (已经扣除了技术费) /// public int estimated_commission { get; set; } /// /// 达人实际佣金收入,单位分 /// public double real_commission { get; set; } /// /// 订单状态(PAY_SUCC:支付完成 REFUND:退款 SETTLE:结算 CONFIRM: 确认收货) /// public string flow_point { get; set; } /// /// App名称(抖音,火山) /// public string app { get; set; } /// /// 下单用户抖店open_id /// public string buyer_openid { get; set; } /// /// 更新时间 [联盟侧订单更新时间] /// public string update_time { get; set; } /// /// 付款时间 /// public string pay_success_time { get; set; } /// /// 结算时间,结算前为空字符串 /// public string settle_time { get; set; } /// /// 预估参与结算金额 /// public int pay_goods_amount { get; set; } /// /// 实际参与结算金额 /// public double settled_goods_amount { get; set; } /// /// 店铺ID /// public long shop_id { get; set; } /// /// 预估平台技术服务费 /// public double shop_estimated_commission { get; set; } /// /// 实际参与结算金额 /// public double shop_real_commission { get; set; } /// /// 预估平台技术服务费 /// public double estimated_tech_service_fee { get; set; } /// /// 实际参与结算金额 /// public double settled_tech_service_fee { get; set; } /// /// 商品数目 /// public long item_num { get; set; } /// /// 退款订单退款时间 /// public string refund_time { get; set; } /// /// 总佣金(预估),对应百应订单明细中的总佣金 /// public double estimated_total_commission { get; set; } /// /// 选品App client_key /// public string pick_source_client_key { get; set; } /// /// 达人/自播商家给直播间分销渠道设置的分成比 /// public double ads_split_rate { get; set; } /// /// 直播间分销渠道预估佣金收入,单位分 /// public double ads_estimated_commission { get; set; } /// /// 直播间分销渠道实际佣金收入,单位分 /// public double ads_real_commission { get; set; } /// /// 达人抖音号 /// public string author_short_id { get; set; } /// /// 达人/自播商家给直播间分销渠道设置的推广费率 /// public double ads_promotion_rate { get; set; } /// /// 达人百应ID /// public string author_buyin_id { get; set; } /// /// 带货体裁。shop_list:橱窗;video:视频;live:直播;others:其他 /// public string media_type { get; set; } } public class Pidinfo { /// /// PID /// public string pid { get; set; } /// /// 外部参数 /// public string external_info { get; set; } /// /// 分销类型,直播:Live,商品:ProductDetail /// public string media_type_name { get; set; } } }