123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- using System;
- using System.ComponentModel.DataAnnotations;
- namespace Dfs.WayneChina.PosModelMini
- {
- public class PosTrxMop
- {
-
-
-
- public Guid Id { get; set; }
-
-
-
- public int LineNum { get; set; }
-
-
-
- public decimal Paid { get; set; }
-
-
-
- public string AuthCode { get; set; }
-
-
-
- public string ResultCode { get; set; }
-
-
-
- public string ResultMessage { get; set; }
-
-
-
- public string ErrorDetail { get; set; }
-
-
-
- public string RawResult { get; set; }
-
-
-
- [MaxLength(28)]
- public string BillNumber { get; set; }
-
-
-
- public decimal PayBack { get; set; }
- #region Car Plate related
-
-
-
- public string CarPlateNumber { get; set; }
-
-
-
- public byte[] CarPlatePicture { get; set; }
- #endregion
- #region IC related
-
-
-
- public string ICCardNumber { get; set; }
- #endregion
-
-
-
- public Guid PosTrxId { get; set; }
-
-
-
- public virtual PosTrx PosTrx { get; set; }
-
-
-
- public Guid PosMopId { get; set; }
-
-
-
- public virtual PosMop Mop { get; set; }
- }
- }
|