Files
kunshan-bzfm-mes-backend/DOAN.Service/MES/Group/IService/IGroupShiftService.cs
2025-03-12 15:32:38 +08:00

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);
}
}