using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.ViewModels.PersonnelModule { /// /// 工资月 List /// public class WageSheetMonthView { /// /// 年月 /// public string YearMonth { get; set; } /// /// 开始日期 /// public string StartDate { get; set; } /// /// 结束日期 /// public string EndDate { get; set; } /// /// 当月工作日 /// public int Workdays { get; set; } } /// /// 日期内容Info /// public class CalendarInfoView { public int Id { get; set; } /// /// 日期 /// Eg:yyyy-MM-dd /// public string Dt { get; set; } /// /// 是否是工作日 /// public bool IsWorkDay { get; set; } /// /// 是否是节假日 /// public bool IsHoliDay { get; set; } /// /// 节假日名称 /// public string HoliName { get; set; } } }