UserYearEndInCome.cs 623 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.PxcModels
  4. {
  5. public partial class UserYearEndInCome
  6. {
  7. public int Id { get; set; }
  8. public int Sort { get; set; }
  9. public int Status { get; set; }
  10. public int Version { get; set; }
  11. public DateTime? CreateDate { get; set; }
  12. public DateTime? UpdateDate { get; set; }
  13. public decimal InComeByYear { get; set; }
  14. public string TradeYear { get; set; }
  15. public int UserId { get; set; }
  16. public int ParentUserId { get; set; }
  17. public string ParentNav { get; set; }
  18. }
  19. }