using System; using System.Collections.Generic; namespace MySystem.JavaUserModels { public partial class KxsDoubleAward { public int Id { get; set; } public decimal LastTradeAmt { get; set; } public decimal ThisTradeAmt { get; set; } public DateTime? SendTime { get; set; } public int IsSend { get; set; } public int IsReach { get; set; } public int TradeMonth { get; set; } public int UserId { get; set; } public string UpdateBy { get; set; } public string CreateBy { get; set; } public int Version { get; set; } public string DelFlag { get; set; } public DateTime? UpdateTime { get; set; } public DateTime? CreateTime { get; set; } } }