27 lines
577 B
C#
27 lines
577 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;
|
|
|
|
namespace DOAN.Service.group.IService
|
|
{
|
|
/// <summary>
|
|
/// 岗位service接口
|
|
/// </summary>
|
|
public interface IGroupPostService : IBaseService<GroupPost>
|
|
{
|
|
PagedInfo<GroupPostDto> GetList(GroupPostQueryDto parm);
|
|
|
|
GroupPost GetInfo(string Id);
|
|
|
|
GroupPost AddGroupPost(GroupPost parm);
|
|
|
|
int UpdateGroupPost(GroupPost parm);
|
|
|
|
int RemoveGroupPost(string[] ids);
|
|
|
|
}
|
|
}
|