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.

53 lines
1.2 KiB
C#

2 months ago
using System;
using LinqToDB.Mapping;
using TradeUsedSale.Enums;
namespace TradeUsedSale.Repositories.Models
{
2 months ago
public class DT_OrderUsedSalePlatform
2 months ago
{
[PrimaryKey, Identity] public int Id { get; set; }
2 months ago
public int OrderUsedSaleId { get; set; }
2 months ago
/// <summary>
/// 打印条码
/// </summary>
public string BarCode { get; set; }
2 months ago
2 months ago
/// <summary>
2 months ago
/// 是否已推送
2 months ago
/// </summary>
public bool IsPublished { get; set; }
2 months ago
2 months ago
/// <summary>
/// 交易方式
/// </summary>
public ShippingMethod? ShippingMethod { get; set; }
/// <summary>
/// 是否全新
/// </summary>
public bool? IsNew { get; set; }
/// <summary>
/// 创建时间
/// </summary>
public DateTime CreationTime { get; set; }
/// <summary>
/// 创建人
/// </summary>
public int CreatorId { get; set; }
/// <summary>
/// 修改时间
/// </summary>
public DateTime? LastModificationTime { get; set; }
/// <summary>
/// 修改人
/// </summary>
public int? LastModifierId { get; set; }
}
}