21 lines
720 B
C#
21 lines
720 B
C#
using FruitBank.Common.Interfaces;
|
|
using LinqToDB.Mapping;
|
|
using Mango.Nop.Core.Entities;
|
|
|
|
namespace FruitBank.Common.Entities;
|
|
|
|
[Table(Name = FruitBankConstClient.ShippingDocumentDbTableName)]
|
|
[System.ComponentModel.DataAnnotations.Schema.Table(FruitBankConstClient.ShippingDocumentDbTableName)]
|
|
public class ShippingDocument : MgEntityBase, IShippingDocument
|
|
{
|
|
public int Id { get; set; }
|
|
public int PartnerId { get; set; }
|
|
public int ShippingId { get; set; }
|
|
public int ShippingItemId { get; set; }
|
|
public DateTime ShippingDate { get; set; }
|
|
public string Country { get; set; }
|
|
|
|
[SkipValuesOnUpdate]
|
|
public DateTime Created { get; set; }
|
|
public DateTime Modified { get; set; }
|
|
} |