1234567891011121314151617181920212223242526272829303132333435 |
- 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; }
- }
- }
|