You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
BookingHeChuan/Myshipping.Application/Service/ExpressDelivery/Dto/SF/ReceiveSfOrderStateDto.cs

19 lines
522 B
C#

using System.Collections.Generic;
namespace Myshipping.Application.Service.ExpressDelivery.Dto.SF
{
public class ReceiveSfOrderStateDto
{
public string requestId { get; set; }
public List<OrderState> orderState { get; set; }
public class OrderState
{
public string orderNo { get; set; }
public string waybillNo { get; set; }
public string orderStateCode { get; set; }
public string orderStateDesc { get; set; }
}
}
}