123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- using Newtonsoft.Json;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- namespace Dfs.WayneChina.PosModelMini
- {
- public class PosTrx
- {
-
-
-
- public Guid Id { get; set; }
-
-
-
- public virtual List<PosTrxLineItem> Items { get; set; }
-
-
-
- public virtual List<PosTrxDiscount> Discounts { get; set; }
-
-
-
- public virtual List<PosTrxMop> Payments { get; set; }
-
-
-
- public PosTrxSource TransactionSource { get; set; }
-
-
-
- public PosTrxType TransactionType { get; set; }
-
-
-
- [MaxLength(20)]
- public string ReceiptId { get; set; }
-
-
-
- public int ShiftId { get; set; }
-
-
-
- [Required]
- public DateTime TransactionInitTimeInPos { get; set; }
-
-
-
- public DateTime TransactionArrivedAtServerTime { get; set; }
-
-
-
- public decimal NetAmount { get; set; }
-
-
-
- public decimal GrossAmount { get; set; }
-
-
-
- public Guid? CurrencyId { get; set; }
-
-
-
- public virtual Currency Currency { get; set; }
-
-
-
- public PosTrxStatus TransactionStatus { get; set; }
-
-
-
- public Guid? RefundLink { get; set; }
-
-
-
- public Guid BusinessUnitId { get; set; }
-
-
-
- public virtual BusinessUnit CreatedFromSite { get; set; }
-
-
-
- public Guid SiteDeviceId { get; set; }
-
-
-
- public virtual SiteDevice CreatedFromSiteDevice { get; set; }
-
-
-
- public string TrxComment { get; set; }
- }
- }
|