ComputeRoyaltiesDto.cs 807 B

1234567891011121314151617181920212223242526272829303132333435
  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace OASystem.Domain.Dtos.Financial
  8. {
  9. public class ComputeRoyaltiesDto
  10. {
  11. public int UserId { get; set; }
  12. public string StartDate { get; set; }
  13. public string EndDate { get; set; }
  14. }
  15. public class ExportRoyaltyExcelDto : ComputeRoyaltiesDto
  16. {
  17. }
  18. public class ComputeRoyaltiesView
  19. {
  20. public decimal price { get; set; }
  21. public string TeamName { get; set; }
  22. public int Id { get; set; }
  23. public List<string> chiArr { get; set; }
  24. public string? teamLvStr { get; set; }
  25. public DateTime VisitDate { get; set; }
  26. public string temp { get; set; }
  27. }
  28. }