UMerchantDepositRecord.cs 530 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.Models.Push
  4. {
  5. public partial class UMerchantDepositRecord
  6. {
  7. public int Id { get; set; }
  8. public int Status { get; set; }
  9. public int UserId { get; set; }
  10. public string MerchNo { get; set; }
  11. public string AgentId { get; set; }
  12. public string PosSn { get; set; }
  13. public string OrderId { get; set; }
  14. public decimal Amount { get; set; }
  15. public DateTime? TransTime { get; set; }
  16. }
  17. }