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.

50 lines
1.1 KiB
C#

2 months ago
using System;
using LinqToDB.Mapping;
namespace TradeUsedSale.Repositories.Models
{
public class DT_OrderUsedSaleApply
{
[PrimaryKey, Identity] public int Id { get; set; }
/// <summary>
/// 二手售卖商品Id
/// </summary>
public int UsedSaleId { 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>
/// 原始Json
/// </summary>
public string OriginJson { get; set; }
/// <summary>
/// 创建时间
/// </summary>
public DateTime CreationTime { get; set; }
/// <summary>
/// 是否已删除
/// </summary>
public bool IsDeleted { get; set; }
}
}