1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.JavaProductModels
- {
- public partial class KxsMachine
- {
- public int Id { get; set; }
- public string BatchNo { get; set; }
- public int PreUserId { get; set; }
- public int ReturnStatus { get; set; }
- public decimal? SourcePledge { get; set; }
- public int IsOpAct { get; set; }
- public int IsSupply { get; set; }
- public int DownFeeFlag { get; set; }
- public int PartnerId { get; set; }
- public int LeaderId { get; set; }
- public string WarehouseName { get; set; }
- public int UpFeeFlag { get; set; }
- public int IsFirst { get; set; }
- public int Status { get; set; }
- public int BindStatus { get; set; }
- public int IsAct { get; set; }
- public decimal MachineRatio { get; set; }
- public string BoxSn { get; set; }
- public DateTime? DeliveryTime { get; set; }
- public DateTime? ActTime { get; set; }
- public DateTime? BindTime { get; set; }
- public string AllotPath { get; set; }
- public decimal CashPledge { get; set; }
- public int MachineType { get; set; }
- public DateTime? RecycleEndTime { get; set; }
- public int RecycleStatus { get; set; }
- public int BrandId { get; set; }
- public int MerchantId { get; set; }
- public int UserId { get; set; }
- public int WarehouseId { get; set; }
- public string PosSn { get; set; }
- public int Version { get; set; }
- public int DelFlag { get; set; }
- public DateTime? UpdateTime { get; set; }
- public DateTime? CreateTime { get; set; }
- public decimal ScanQrTrade { get; set; }
- public decimal DebitCardTrade { get; set; }
- public decimal CreditTrade { get; set; }
- public string SourcePosSn { get; set; }
- public string DevLocation { get; set; }
- public decimal SecondFee { get; set; }
- public int PosType { get; set; }
- public string DeviceType { get; set; }
- public string DeviceCode { get; set; }
- }
- }
|