1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.KxsUserModels
- {
- public partial class KxsUserProfitLog
- {
- public int Id { get; set; }
- public decimal ZlbProfitAmt { get; set; }
- public decimal GdProfitAmt { get; set; }
- public decimal LkbProfitAmt { get; set; }
- public decimal PosProfitAmt { get; set; }
- public decimal ServerFee { get; set; }
- public int ProfitMonth { 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; }
- }
- }
|