Files
kunshan-bzfm-mes-backend/DOAN.Service/MES/Group/IService/ISkillMatrixService.cs
2025-03-19 13:44:59 +08:00

24 lines
603 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_;
using Microsoft.AspNetCore.Mvc;
namespace DOAN.Service.MES.group.IService
{
public interface ISkillMatrixService
{
//List<GroupSchedule> GetAllGroups(DateTime date);
public List<BaseGroup> GetAllGroups();
List<BaseWorkRoute> GetAllRoutes();
List<GroupPerson> GetPersonsList(string group_code);
HandleSkillInfoDto GetSkillsDetailofPepole(HandleSkillQueryDto parm);
}
}