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
{
///
/// 工资 工作日 Dto
///
public class WageSheetMonthWorkdaysDto
{
}
///
/// 添加 Or 修改
///
public class WageSheetMonthWorkdaysAddOrEditDto
{
public int UserId { get; set; }
///
/// 月份Id
///
public int Id { get; set; }
///
/// 年月
///
public string YearMonth { get; set; }
public string StartDate { get; set; }
public string EndDate { get; set; }
///
/// 日期信息
///
public List CalendarInfos { get; set; }
}
}