using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SDKAdapter.PurchasePlatform.Models
{
public class PP_CreateOrderRequest : PP_PreviewOrderRequest
{
///
/// 下单备注
///
public string Remark { get; set; }
///
/// 扩展数据
///
public string Extensions { get; set; }
}
}