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.
|
|
|
namespace BBWYB.Server.Model.Dto
|
|
|
|
{
|
|
|
|
public class CreateOrderRequest: PreviewOrderRequest
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// 报价扩展信息
|
|
|
|
/// </summary>
|
|
|
|
public string Extensions { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 采购备注, 即将弃用, 目前保留给WPF版使用
|
|
|
|
/// </summary>
|
|
|
|
public string Remark { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 店铺订单Id
|
|
|
|
/// </summary>
|
|
|
|
public string OrderId { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 店铺Id
|
|
|
|
/// </summary>
|
|
|
|
public long ShopId { get; set; }
|
|
|
|
}
|
|
|
|
}
|