This commit is contained in:
赵正易 2024-08-12 09:10:23 +08:00
commit 61d4db67e8
2 changed files with 10 additions and 1 deletions

View File

@ -212,5 +212,14 @@ namespace DOAN.Service.Business
return results;
}
//public void CopyPreDaySchedule(DateTime date)
//{
// DateTime PreDate = date.AddDays(-1);
// List<GroupSchedule> Queryable().Where(it => it.ScheduleDate == date).ToList();
//}
}
}

View File

@ -26,6 +26,6 @@ namespace DOAN.Service.group.IService
int GroupAddPerson(string group_schedule_id, string person_id, string CreatedBy);
int GroupRemovePerson(string group_schedule_id, string person_id);
public Dictionary<DateTime, int> GetMonthScheduleResult(int HandleMonth)
public Dictionary<DateTime, int> GetMonthScheduleResult(int HandleMonth);
}
}