18 lines
780 B
C#
18 lines
780 B
C#
using AyCode.Core.Serializers.Attributes;
|
|
using LinqToDB.Mapping;
|
|
using Mango.Nop.Core.Entities;
|
|
|
|
namespace FruitBank.Common.Entities;
|
|
|
|
[AcBinarySerializable(false, true, false, true, false, false)]
|
|
//[ToonDescription("Business partner with address and tax information", Purpose = "Represents an external legal entity, specifically a Supplier who provides goods or a business partner involved in the procurement chain")]
|
|
[Table(Name = FruitBankConstClient.CargoTruckDbTableName)]
|
|
[System.ComponentModel.DataAnnotations.Schema.Table(FruitBankConstClient.CargoTruckDbTableName)]
|
|
public sealed class CargoTruck: MgEntityBase//, ICargoPartner
|
|
{
|
|
public int CargoPartnerId { get; set; }
|
|
public string CountryCode { get; set; }
|
|
public string LicencePlate { get; set; }
|
|
|
|
}
|