| 123456789101112131415161718192021222324252627 |
- using OASystem.Domain.ViewModels.PersonnelModule;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Dtos.PersonnelModule
- {
- public class DailyKpiDtos
- {
- public int CurrUserId { get; set; }
- }
- #region 财务 日常考勤 dto
- public class CompanyDailyKpiSaveDto : DailyKpiDtos
- {
- public List<CompanyDailyKpiView> Infos { get; set; }
- }
- #endregion
- }
|