24 lines
640 B
24 lines
640 B
2 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Text;
|
||
|
|
||
|
namespace BBWY.Client.Models.PackTask
|
||
|
{
|
||
|
public class PackTaskExpress : NotifyObject
|
||
|
{
|
||
|
private string sourceExpressName;
|
||
|
private string waybillNo;
|
||
|
/// <summary>
|
||
|
/// 快递单号
|
||
|
/// </summary>
|
||
|
public string WaybillNo { get=> waybillNo; set { Set(ref waybillNo, value); } }
|
||
|
/// <summary>
|
||
|
/// 原快递公司
|
||
|
/// </summary>
|
||
|
public string SourceExpressName { get => sourceExpressName; set { Set(ref sourceExpressName, value); } }
|
||
|
|
||
|
|
||
|
public string NewGuid { get; set; }
|
||
|
}
|
||
|
}
|