班组修改
This commit is contained in:
43
DOAN.Service/MES/Group/IService/IGroupScheduleService.cs
Normal file
43
DOAN.Service/MES/Group/IService/IGroupScheduleService.cs
Normal file
@@ -0,0 +1,43 @@
|
||||
using System;
|
||||
using DOAN.Model;
|
||||
using DOAN.Model.MES.group;
|
||||
using DOAN.Model.MES.group.Dto;
|
||||
using System.Collections.Generic;
|
||||
using DOAN.Model.MES.base_;
|
||||
|
||||
namespace DOAN.Service.group.IService
|
||||
{
|
||||
/// <summary>
|
||||
/// 排班service接口
|
||||
/// </summary>
|
||||
public interface
|
||||
|
||||
IGroupScheduleService : IBaseService<GroupSchedule>
|
||||
{
|
||||
PagedInfo<GroupScheduleDto> GetList(GroupScheduleQueryDto parm);
|
||||
|
||||
GroupSchedule GetInfo(string Id);
|
||||
|
||||
GroupSchedule AddGroupSchedule(GroupSchedule parm);
|
||||
|
||||
int UpdateGroupSchedule(GroupSchedule parm);
|
||||
|
||||
PagedInfo<GroupScheduleDto> ListGroupByDate(GroupScheduleQueryDto2 query);
|
||||
|
||||
List<GroupPersonDto> SearchPerson_group_bind(string group_schedule_id);
|
||||
PagedInfo<GroupPersonDto> SearchPerson_group_bind_No(GroupScheduleQueryDto3 parm);
|
||||
|
||||
List<BaseGroup> GetALLGroup(string group_code,string group_name);
|
||||
int GroupAddPerson(string group_schedule_id, string person_id, string CreatedBy);
|
||||
int GroupRemovePerson(string group_schedule_id, string person_id);
|
||||
|
||||
List<SchedulingSituation> GetMonthScheduleResult(int year,int HandleMonth);
|
||||
|
||||
int CopyPreDaySchedule(DateTime date, string CreatedBy);
|
||||
|
||||
List<BaseWorkRoute> GetAllRoutes();
|
||||
|
||||
|
||||
List<GroupPersonOfSkillDto> GetSkillsOFperson(string person_id, int route_id);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user