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#
38 lines
878 B
C#
using System;
|
|
|
|
namespace TradeManageNew.Models.ShopifyUsedSale
|
|
{
|
|
public class OrderUsedSaleApplyDto
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
/// <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; }
|
|
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
public DateTime CreationTime { get; set; }
|
|
/// <summary>
|
|
/// imgList
|
|
/// </summary>
|
|
public string imgList { get; set; }
|
|
}
|
|
} |