29 lines
584 B
C#
29 lines
584 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;
|
|
using DOAN.Model.MES.base_;
|
|
|
|
namespace DOAN.Service.group.IService
|
|
{
|
|
/// <summary>
|
|
/// 人员service接口
|
|
/// </summary>
|
|
public interface IGroupPersonService : IBaseService<GroupPerson>
|
|
{
|
|
PagedInfo<GroupPersonDto> GetList(GroupPersonQueryDto parm);
|
|
|
|
GroupPerson GetInfo(string Id);
|
|
|
|
GroupPerson AddGroupPerson(GroupPerson parm);
|
|
|
|
int UpdateGroupPerson(GroupPerson parm);
|
|
|
|
|
|
|
|
|
|
}
|
|
}
|