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.
22 lines
611 B
22 lines
611 B
using BBWY.Server.Model.Db;
|
|
using System.Collections.Generic;
|
|
|
|
namespace BBWY.Server.Model.Dto
|
|
{
|
|
public class BatchPurchasePreviewOrderRequestV2
|
|
{
|
|
/// <summary>
|
|
/// 采购账号列表
|
|
/// </summary>
|
|
public IList<PurchaseAccount> PurchaseAccountList { get; set; }
|
|
|
|
public Enums.PurchaseOrderMode PurchaseOrderMode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 收货人信息
|
|
/// </summary>
|
|
public ConsigneeRequest Consignee { get; set; }
|
|
|
|
public IList<BatchPurchaseCargoParamGroupRequestV2> CargoParamGroupList { get; set; }
|
|
}
|
|
}
|
|
|