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.
20 lines
463 B
20 lines
463 B
namespace BBWYB.Server.Model.Dto
|
|
{
|
|
/// <summary>
|
|
/// 修改快递单号
|
|
/// </summary>
|
|
public class EditPurchaseExpressOrderRequest
|
|
{
|
|
public string OrderId { get; set; }
|
|
|
|
public string PurchaseOrderId { get; set; }
|
|
|
|
public string OldWaybillNo { get; set; }
|
|
|
|
public string NewWaybillNo { get; set; }
|
|
|
|
public string NewExpressId { get; set;}
|
|
|
|
public string NewExpressName { get; set; }
|
|
}
|
|
}
|
|
|