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.

26 lines
614 B

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