1234567891011121314151617181920212223242526272829303132 |
- using Central.Control.Domain;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace MES.Production.Service.IService
- {
-
-
-
-
- public interface IPostDepartmentManage : IRepository<SYS_POST_DEPARTMENT>
- {
-
-
-
- List<SYS_POST> GetPostIDByDptId(string dptId);
-
-
-
- List<SYS_DISTRIBUTORS> GetDptIDByPostID(string postId);
-
-
-
- dynamic GetPostDptInfoByDptId(string dptId);
-
-
-
- bool SetPost(string dptId, string postId,out string msg);
- }
- }
|