25 lines
541 B
C#
25 lines
541 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;
|
|
|
|
namespace DOAN.Service.group.IService
|
|
{
|
|
/// <summary>
|
|
/// 班次service接口
|
|
/// </summary>
|
|
public interface IGroupShiftService : IBaseService<GroupShift>
|
|
{
|
|
PagedInfo<GroupShiftDto2> GetList(GroupShiftQueryDto parm);
|
|
|
|
GroupShift GetInfo(int Id);
|
|
|
|
GroupShift AddGroupShift(GroupShift parm);
|
|
|
|
int UpdateGroupShift(GroupShift parm);
|
|
|
|
}
|
|
}
|