55 lines
1.7 KiB
C#
55 lines
1.7 KiB
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 Microsoft.AspNetCore.Mvc;
|
|
using MimeKit.Tnef;
|
|
using DOAN.Model.MES.base_.Dto;
|
|
using DOAN.Model.MES.base_;
|
|
|
|
namespace DOAN.Service.group.IService
|
|
{
|
|
/// <summary>
|
|
/// 人员技能service接口
|
|
/// </summary>
|
|
public interface IGroupPersonSkillService : IBaseService<GroupPersonSkill>
|
|
{
|
|
PagedInfo<GroupPersonSkillDto> GetList(GroupPersonSkillQueryDto parm);
|
|
|
|
GroupPersonSkill GetInfo(string Id);
|
|
|
|
GroupPersonSkill AddGroupPersonSkill(GroupPersonSkill parm);
|
|
|
|
int UpdateGroupPersonSkill(GroupPersonSkill parm);
|
|
|
|
int PersonskillAssessment(GroupRelPersonSkill relPersonSkill);
|
|
|
|
List<GroupPersonSkillDto2> GetPersonSkills(string person_id);
|
|
PagedInfo<GroupPersonSkillDto> GetPersonUnownSkills(GroupPersonSkillQueryDto2 parm);
|
|
|
|
int CancalPersonSkillBind(string person_id, string skill_id);
|
|
|
|
|
|
|
|
|
|
|
|
List<BaseWorkRoute> GetWorkRouteList([FromBody] BaseWorkRouteQueryDto query);
|
|
|
|
PagedInfo<BaseWorkStation> GetWorkstationbyRoute(BaseWorkStationQueryDto2 query);
|
|
|
|
List<RouteANDprocess> RouteProcessParentSon(BaseWorkRouteQueryDto query);
|
|
|
|
List<BaseWorkStation> GetWorkstationList_byProccess(int workProcess_id);
|
|
|
|
List<GroupPersonSkill> GetWorkstationBindSkillList(int workstation_id);
|
|
|
|
PagedInfo<GroupPersonSkillDto> GetWorkstationunBindSkillList(GroupPersonSkillQueryDto3 parm);
|
|
|
|
int HandleWorkstationbindSkill(int workstation_id, string skill_id);
|
|
int LiftedWorkstationbindSkill(int workstation_id, string skill_id);
|
|
|
|
}
|
|
}
|