1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.JavaProductModels
- {
- public partial class KxsMachineRatio
- {
- public int Id { get; set; }
- public int MachineId { get; set; }
- public int Status { get; set; }
- public int MerchantId { get; set; }
- public string Result { get; set; }
- public int BrandId { get; set; }
- public string CreateBy { get; set; }
- public string Remark { get; set; }
- public decimal Ratio { get; set; }
- public string PosSn { get; set; }
- public int UserId { get; set; }
- public int Version { get; set; }
- public int DelFlag { get; set; }
- public DateTime? UpdateTime { get; set; }
- public DateTime? CreateTime { get; set; }
- public int? PosUserId { get; set; }
- public decimal BeforeRatio { get; set; }
- }
- }
|