步步为盈
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.

23 lines
640 B

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; }
}
}