12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.JavaStatModels
- {
- public partial class KxsBindInfo
- {
- public int Id { get; set; }
- public int OpType { get; set; }
- public int UserId { get; set; }
- public DateTime? OpTime { get; set; }
- public string RequestId { get; set; }
- public string MchMobile { get; set; }
- public string MchName { get; set; }
- public string MchNo { get; set; }
- public string IdCard { get; set; }
- public int MachineId { get; set; }
- public int MchId { get; set; }
- public int BrandId { get; set; }
- public int Version { get; set; }
- public string DelFlag { get; set; }
- public DateTime? UpdateTime { get; set; }
- public DateTime? CreateTime { get; set; }
- public int PushFlag { get; set; }
- public string PosSn { get; set; }
- public string Remark { get; set; }
- }
- }
|