using System;
using LinqToDB.Mapping;
using TradeUsedSale.Enums;
namespace TradeUsedSale.Repositories.Models
{
public class DT_OrderUsedSalePlatform
{
[PrimaryKey, Identity] public int Id { get; set; }
///
/// 产品Id
///
public int ProductId { get; set; }
///
/// 产品编码
///
public string ProductCode { get; set; }
///
/// SKU ID
///
public int SkuId { get; set; }
///
/// SKU Code
///
public string SkuCode { get; set; }
///
/// 打印条码
///
public string BarCode { get; set; }
///
/// 是否已推送
///
public bool IsPublished { get; set; }
///
/// 仓库
///
public WarehouseLocation WarehouseLocation { get; set; }
///
/// 库位Id
///
public int WarehousePositionId { get; set; }
///
/// 库位编码
///
public string WarehousePositionCode { get; set; }
///
/// 图片信息
///
public string ImageUrls { get; set; }
///
/// 交易方式
///
public ShippingMethod? ShippingMethod { get; set; }
///
/// 是否全新
///
public bool? IsNew { get; set; }
///
/// 创建时间
///
public DateTime CreationTime { get; set; }
///
/// 创建人
///
public int CreatorId { get; set; }
///
/// 修改时间
///
public DateTime? LastModificationTime { get; set; }
///
/// 修改人
///
public int? LastModifierId { get; set; }
}
}