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 SaveRoyaltyDetaileDto { /// /// 开始时间 /// public DateTime StartDataTime { get; set; } /// /// 结束时间 /// public DateTime EndDataTime { get; set; } /// /// 提成人员 /// public int UserId { get; set;} /// /// 提成信息集合 /// public List ComputeRoyaltiesList { get; set; } } public class ComputeRoyaltiesView { public decimal price { get; set; } public string TeamName { get; set; } public int Id { get; set; } public List chiArr { get; set; } public string? teamLvStr { get; set; } public DateTime VisitDate { get; set; } public string temp { get; set; } } }