12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.KxsUserModels
- {
- public partial class KxsTradeLevelLog
- {
- public long Id { get; set; }
- public decimal TradeAmt { get; set; }
- public int TradeMonth { get; set; }
- public string Remark { get; set; }
- public int Level { get; set; }
- public int LastLevel { 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 string PidPath { get; set; }
- public int LeaderLevel { get; set; }
- public int PreLevel { get; set; }
- public int BeforePreLevel { get; set; }
- public int UserLevel { get; set; }
- }
- }
|