30 lines
958 B
C#
30 lines
958 B
C#
using System;
|
|
using DOAN.Model;
|
|
using DOAN.Model.MES.group;
|
|
using DOAN.Model.MES.group.Dto;
|
|
using System.Collections.Generic;
|
|
|
|
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<GroupPerson> SearchPerson_group_bind(string group_schedule_id);
|
|
List<GroupPerson> SearchPerson_group_bind_No(string group_schedule_id);
|
|
int GroupAddPerson(string group_schedule_id, string person_id, string CreatedBy);
|
|
int GroupRemovePerson(string group_schedule_id, string person_id);
|
|
}
|
|
}
|