22 lines
995 B
C#
22 lines
995 B
C#
using AyCode.Core.Serializers.Attributes;
|
|
using AyCode.Core.Serializers.Toons;
|
|
using FruitBank.Common.Enums;
|
|
using LinqToDB.Mapping;
|
|
using Mango.Nop.Core.Entities;
|
|
|
|
namespace FruitBank.Common.Entities;
|
|
|
|
[AcBinarySerializable(false, true, false, true, false, false)]
|
|
[Table(Name = FruitBankConstClient.PreOrderItemDbTableName)]
|
|
[System.ComponentModel.DataAnnotations.Schema.Table(FruitBankConstClient.PreOrderItemDbTableName)]
|
|
//[ToonDescription("Shipping document with partner, items and files", Purpose = "A digital representation of a supplier's delivery note or invoice associated with the shipment, used for reconciling paper-based data with measured reality")]
|
|
public sealed class PreorderItem : MgEntityBase
|
|
{
|
|
public int PreorderId { get; set; }
|
|
public int ProductId { get; set; }
|
|
public int RequestedQuantity { get; set; }
|
|
public int FulfilledQuantity { get; set; }
|
|
public decimal UnitPriceInclTax { get; set; }
|
|
public PreorderItemStatus Status { get; set; }
|
|
}
|