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

25 lines
581 B

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