123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.Models.Push
- {
- public partial class UMerchantDepositRecord
- {
- public int Id { get; set; }
- public int Status { get; set; }
- public int UserId { get; set; }
- public string MerchNo { get; set; }
- public string AgentId { get; set; }
- public string PosSn { get; set; }
- public string OrderId { get; set; }
- public decimal Amount { get; set; }
- public DateTime? TransTime { get; set; }
- }
- }
|