123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.KxsUserModels
- {
- public partial class KxsUserProfitZlb
- {
- public int Id { get; set; }
- public decimal TradeAmt { get; set; }
- public int IsTeam { get; set; }
- public string Remark { get; set; }
- public int ProfitMonth { get; set; }
- public int Status { get; set; }
- public decimal ProfitAmt { get; set; }
- public int UserId { get; set; }
- public int Version { get; set; }
- public string DelFlag { get; set; }
- public DateTime? UpdateTime { get; set; }
- public DateTime? CreateTime { get; set; }
- }
- }
|