1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.KxsUserModels
- {
- public partial class KxsProfitInitBefore
- {
- public int Id { get; set; }
- public int FromUserId { get; set; }
- public int Status { get; set; }
- public string MessageId { get; set; }
- public int ProfitMonth { get; set; }
- public decimal ProfitAmt { get; set; }
- public int UserId { get; set; }
- public int ProfitType { get; set; }
- public int BrandId { get; set; }
- public DateTime? CreateTime { get; set; }
- public DateTime? UpdateTime { get; set; }
- public string DelFlag { get; set; }
- public int Version { get; set; }
- public string Remark { get; set; }
- public int Level { get; set; }
- public decimal TradeAmt { get; set; }
- public decimal Rate { get; set; }
- }
- }
|