namespace BBWY.Server.Model.Dto
{
public class CreateOnlinePurchaseOrderRequest : PreviewOrderReuqest
{
///
/// 下单模式
///
public string TradeMode { get; set; }
///
/// 采购单留言
///
public string Remark { get; set; }
///
/// 店铺订单Id
///
public string OrderId { get; set; }
///
/// 店铺Id
///
public long ShopId { get; set; }
///
/// 在线采购账号Id
///
public long PurchaseAccountId { get; set; }
///
/// 买家账号
///
public string BuyerAccount { get; set; }
public string SellerAccount { get; set; }
public decimal PlatformCommissionRatio { get; set; }
///
/// 采购商Id
///
public string PurchaserId { get; set; }
///
/// 扩展数据
///
public string Extensions { get; set; }
public object SourceSku { get; set; }
public string SourceShopName { get; set; }
///
/// fail 不自动支付 success :自动支付
///
public string AutoPay { get; set; }
}
}