提交
This commit is contained in:
23
DOAN.Service/MES/Base/IService/IBaseGroupService.cs
Normal file
23
DOAN.Service/MES/Base/IService/IBaseGroupService.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
using DOAN.Model;
|
||||
using DOAN.Model.Dto;
|
||||
using DOAN.Model.MES.base_;
|
||||
using DOAN.Model.MES.base_.Dto;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DOAN.Service.MES.base_.IService
|
||||
{
|
||||
/// <summary>
|
||||
/// 组service接口
|
||||
/// </summary>
|
||||
public interface IBaseGroupService : IBaseService<BaseGroup>
|
||||
{
|
||||
PagedInfo<BaseGroupDto> GetList(BaseGroupQueryDto parm);
|
||||
|
||||
BaseGroup GetInfo(int Id);
|
||||
|
||||
BaseGroup AddBaseGroup(BaseGroup parm);
|
||||
|
||||
int UpdateBaseGroup(BaseGroup parm);
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user