using System; using System.Collections.Generic; using System.Text; namespace BBWY.Server.Model.Dto { public class BatchPurchaseCreateOrderRequestV2 : BatchPurchasePreviewOrderRequestV2 { /// /// 扩展字段 ,格式参考报价接口返回值 /// public string Extensions { get; set; } public long ShopId { get; set; } public string ShopName { get; set; } /// /// fail 不自动支付 success :自动支付 /// public string AutoPay { get; set; } = "fail"; /// /// 入仓类型 /// public Enums.IntoStoreType? IntoStoreType { get; set; } ///// ///// 打包设置 ///// //public IList PackSkuConfigList { get; set; } } }