25 lines
528 B
C#
25 lines
528 B
C#
using System;
|
|
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);
|
|
|
|
}
|
|
}
|