DailyKpiDtos.cs 492 B

123456789101112131415161718192021222324252627
  1. using OASystem.Domain.ViewModels.PersonnelModule;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace OASystem.Domain.Dtos.PersonnelModule
  8. {
  9. public class DailyKpiDtos
  10. {
  11. public int CurrUserId { get; set; }
  12. }
  13. #region 财务 日常考勤 dto
  14. public class CompanyDailyKpiSaveDto : DailyKpiDtos
  15. {
  16. public List<CompanyDailyKpiView> Infos { get; set; }
  17. }
  18. #endregion
  19. }