1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.KxsUserModels
- {
- public partial class KxsShdLeaderCheck
- {
- public int Id { get; set; }
- public string StatMonth { get; set; }
- public int BigMarketCount { get; set; }
- public decimal TotalTradeAmount { get; set; }
- public decimal SmallTradeAmount { get; set; }
- public int DeepStaCount { get; set; }
- public int StaCount { get; set; }
- public int LeaderType { get; set; }
- public string PidPath { get; set; }
- public int Pid { 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; }
- }
- }
|