qianhao.xu 1aba8c0083 修正
2024-08-13 09:56:17 +08:00

21 lines
454 B
C#

using System;
using DOAN.Model;
using DOAN.Model.Dto;
using DOAN.Model.MES.group;
using DOAN.Model.MES.group.Dto;
using System.Collections.Generic;
using DOAN.Model.MES.base_;
namespace DOAN.Service.MES.group.IService
{
public interface ISkillMatrixService
{
List<GroupSchedule> GetAllGroups(DateTime date);
List<BaseWorkRoute> GetAllRoutes();
List<GroupPersonDto> GetPersonsList(string group_schedule_id);
}
}