24 lines
517 B
C#
24 lines
517 B
C#
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);
|
|
|
|
}
|
|
}
|