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.

59 lines
1.3 KiB
C#

2 months ago
using System;
using LinqToDB.Mapping;
2 months ago
using TradeUsedSale.Enums;
2 months ago
namespace TradeUsedSale.Repositories.Models
{
/// <summary>
2 months ago
/// 二手销售商品录入记录
2 months ago
/// </summary>
2 months ago
public class DT_OrderUsedSaleEntry
2 months ago
{
2 months ago
[PrimaryKey, Identity] public int Id { get; set; }
2 months ago
/// <summary>
/// 订单Id
/// </summary>
2 months ago
public int OrderId { get; set; }
2 months ago
/// <summary>
/// 订单号
/// </summary>
public string OrderCode { get; set; }
/// <summary>
/// SKU ID
/// </summary>
public int GoodsId { get; set; }
/// <summary>
2 months ago
/// SKU Code
2 months ago
/// </summary>
2 months ago
public string GoodsCode { get; set; }
2 months ago
/// <summary>
/// 数量
/// </summary>
public int Quantity { get; set; }
2 months ago
/// <summary>
/// 跟踪号
/// </summary>
public string TrackingCode { get; set; }
/// <summary>
/// 仓库
/// </summary>
public WarehouseLocation WarehouseLocation { get; set; }
2 months ago
/// <summary>
/// 创建时间
/// </summary>
public DateTime CreationTime { get; set; }
/// <summary>
/// 创建人
/// </summary>
public int CreatorId { get; set; }
}
}