班组修改
This commit is contained in:
26
DOAN.Service/MES/Group/IService/IGroupPostService.cs
Normal file
26
DOAN.Service/MES/Group/IService/IGroupPostService.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
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);
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user