12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.JavaProductModels
- {
- public partial class KxsMerchantTrade
- {
- public int Id { get; set; }
- public string LvKey { get; set; }
- public int CloudPayFlag { get; set; }
- public int DebitTopFlag { get; set; }
- public int CardType { get; set; }
- public string TradeNo { get; set; }
- public string PosSn { get; set; }
- public string UserCode { get; set; }
- public string Username { get; set; }
- public int BrandId { get; set; }
- public decimal TradeAmt { get; set; }
- public long MchId { get; set; }
- public int Version { get; set; }
- public string DelFlag { get; set; }
- public DateTime? UpdateTime { get; set; }
- public DateTime? CreateTime { get; set; }
- }
- }
|