1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.MpMainModels2
- {
- public partial class PosMachines
- {
- public int Id { get; set; }
- public int Sort { get; set; }
- public int QueryCount { get; set; }
- public int Status { get; set; }
- public int Version { get; set; }
- public DateTime? CreateDate { get; set; }
- public DateTime? UpdateDate { get; set; }
- public string CreateMan { get; set; }
- public string UpdateMan { get; set; }
- public string SeoTitle { get; set; }
- public string SeoKeyword { get; set; }
- public string SeoDescription { get; set; }
- public int SourceStoreId { get; set; }
- public int OrderId { get; set; }
- public DateTime? RecycEndDate { get; set; }
- public string DeviceKind { get; set; }
- public string DeviceName { get; set; }
- public string BatchNo { get; set; }
- public string DeviceType { get; set; }
- public int PosSnType { get; set; }
- public int BindMerchantId { get; set; }
- public string ActivityList { get; set; }
- public decimal ScanQrTrade { get; set; }
- public decimal DebitCardTrade { get; set; }
- public int StoreId { get; set; }
- public int RecycBackCount { get; set; }
- public string PrizeParams { get; set; }
- public ulong IsVip { get; set; }
- public decimal CreditTrade { get; set; }
- public int BrandId { get; set; }
- public string UserNav { get; set; }
- public int BuyUserId { get; set; }
- public DateTime? TransferTime { get; set; }
- public string PosSn { get; set; }
- public ulong IsPurchase { get; set; }
- public int UserId { get; set; }
- public DateTime? BindingTime { get; set; }
- public DateTime? ActivationTime { get; set; }
- public string Detail { get; set; }
- public int ActivationState { get; set; }
- public int BindingState { get; set; }
- }
- }
|