班组修改
This commit is contained in:
24
DOAN.Service/MES/Group/IService/IGroupShiftService.cs
Normal file
24
DOAN.Service/MES/Group/IService/IGroupShiftService.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
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);
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user