1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.KxsUserModels
- {
- public partial class KxsUserProfit
- {
- public int Id { get; set; }
- public int IsTeam { get; set; }
- public int TradeType { get; set; }
- public string BrandName { get; set; }
- public int BrandId { 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; }
- }
- }
|