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; } } }