步步为盈
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.

45 lines
1.0 KiB

namespace BBWY.Server.Model.Dto
{
public class CreateOnlinePurchaseOrderRequest : PreviewOrderReuqest
{
/// <summary>
/// 下单模式
/// </summary>
public string TradeMode { get; set; }
/// <summary>
/// 采购单留言
/// </summary>
public string Remark { get; set; }
/// <summary>
/// 店铺订单Id
/// </summary>
public string OrderId { get; set; }
/// <summary>
/// 店铺Id
/// </summary>
public long ShopId { get; set; }
/// <summary>
/// 在线采购账号Id
/// </summary>
public long PurchaseAccountId { get; set; }
/// <summary>
/// 买家账号
/// </summary>
public string BuyerAccount { get; set; }
public string SellerAccount { get; set; }
public decimal PlatformCommissionRatio { get; set; }
/// <summary>
/// 采购商Id
/// </summary>
public string PurchaserId { get; set; }
}
}