24 lines
570 B
C#
24 lines
570 B
C#
using System;
|
|
using ZR.Model;
|
|
using ZR.Model.Dto;
|
|
using ZR.Model.Business;
|
|
using System.Collections.Generic;
|
|
|
|
namespace ZR.Service.Business.IBusinessService
|
|
{
|
|
/// <summary>
|
|
/// 质量GP12班组service接口
|
|
/// </summary>
|
|
public interface IQcGp12BaseGroupService : IBaseService<QcGp12BaseGroup>
|
|
{
|
|
PagedInfo<QcGp12BaseGroupDto> GetList(QcGp12BaseGroupQueryDto parm);
|
|
|
|
QcGp12BaseGroup GetInfo(int Id);
|
|
|
|
QcGp12BaseGroup AddQcGp12BaseGroup(QcGp12BaseGroup parm);
|
|
|
|
int UpdateQcGp12BaseGroup(QcGp12BaseGroup parm);
|
|
|
|
}
|
|
}
|