| 12345678910111213141516171819202122232425262728293031323334 |
- using System;
- using System.Collections;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Dtos.Financial
- {
- public class ComputeRoyaltiesDto
- {
- public int UserId { get; set; }
- public string StartDate { get; set; }
- public string EndDate { get; set; }
- }
- public class ExportRoyaltyExcelDto : ComputeRoyaltiesDto
- {
- }
- public class ComputeRoyaltiesView
- {
- public decimal price { get; set; }
- public string TeamName { get; set; }
- public int Id { get; set; }
- public List<string> chiArr { get; set; }
- public string? teamLvStr { get; set; }
- public DateTime VisitDate { get; set; }
- public string temp { get; set; }
- }
- }
|