12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.JavaProductModels
- {
- public partial class KxsMachineAward
- {
- public int Id { get; set; }
- public decimal Amount { get; set; }
- public int VariationType { get; set; }
- public string Username { get; set; }
- public string UserCode { get; set; }
- public int UserId { get; set; }
- public int MachineId { get; set; }
- public string PosSn { get; set; }
- public DateTime? UpdateTime { get; set; }
- public DateTime? CreateTime { get; set; }
- public int DelFlag { get; set; }
- public int Version { get; set; }
- public int AwardType { get; set; }
- }
- }
|