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.

38 lines
878 B
C#

2 months ago
using System;
namespace TradeManageNew.Models.ShopifyUsedSale
{
public class OrderUsedSaleApplyDto
{
1 month ago
public int Id { get; set; }
2 months ago
/// <summary>
/// 二手售卖商品打印条码
/// </summary>
public string UsedSaleBarCode { get; set; }
/// <summary>
/// 服务类型
/// </summary>
public string ServiceType { get; set; }
/// <summary>
/// 跟踪号
/// </summary>
public string TrackingCode { get; set; }
/// <summary>
/// 运费
/// </summary>
public decimal TotalNetCharge { get; set; }
1 month ago
2 months ago
/// <summary>
/// 创建时间
/// </summary>
public DateTime CreationTime { get; set; }
/// <summary>
/// imgList
/// </summary>
public string imgList { get; set; }
2 months ago
}
}