StockQuantityHistoryExt, StockQuantityHistoryDto; improvements, fixes;
This commit is contained in:
parent
7518dcbf06
commit
5fb21a5e46
|
|
@ -1,42 +1,42 @@
|
|||
namespace Nop.Core.Domain.Catalog;
|
||||
//namespace Nop.Core.Domain.Catalog;
|
||||
|
||||
/// <summary>
|
||||
/// Represents a stock quantity change entry
|
||||
/// </summary>
|
||||
public partial class StockQuantityHistory : BaseEntity
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or sets the stock quantity adjustment
|
||||
/// </summary>
|
||||
public int QuantityAdjustment { get; set; }
|
||||
///// <summary>
|
||||
///// Represents a stock quantity change entry
|
||||
///// </summary>
|
||||
//public partial class StockQuantityHistory : BaseEntity
|
||||
//{
|
||||
// /// <summary>
|
||||
// /// Gets or sets the stock quantity adjustment
|
||||
// /// </summary>
|
||||
// public int QuantityAdjustment { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets current stock quantity
|
||||
/// </summary>
|
||||
public int StockQuantity { get; set; }
|
||||
// /// <summary>
|
||||
// /// Gets or sets current stock quantity
|
||||
// /// </summary>
|
||||
// public int StockQuantity { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the message
|
||||
/// </summary>
|
||||
public string Message { get; set; }
|
||||
// /// <summary>
|
||||
// /// Gets or sets the message
|
||||
// /// </summary>
|
||||
// public string Message { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the date and time of instance creation
|
||||
/// </summary>
|
||||
public DateTime CreatedOnUtc { get; set; }
|
||||
// /// <summary>
|
||||
// /// Gets or sets the date and time of instance creation
|
||||
// /// </summary>
|
||||
// public DateTime CreatedOnUtc { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the product identifier
|
||||
/// </summary>
|
||||
public int ProductId { get; set; }
|
||||
// /// <summary>
|
||||
// /// Gets or sets the product identifier
|
||||
// /// </summary>
|
||||
// public int ProductId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the product attribute combination identifier
|
||||
/// </summary>
|
||||
public int? CombinationId { get; set; }
|
||||
// /// <summary>
|
||||
// /// Gets or sets the product attribute combination identifier
|
||||
// /// </summary>
|
||||
// public int? CombinationId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the warehouse identifier
|
||||
/// </summary>
|
||||
public int? WarehouseId { get; set; }
|
||||
}
|
||||
// /// <summary>
|
||||
// /// Gets or sets the warehouse identifier
|
||||
// /// </summary>
|
||||
// public int? WarehouseId { get; set; }
|
||||
//}
|
||||
Loading…
Reference in New Issue