using Central.Control.Domain; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace MES.Production.Service.IService { /// /// 消息接收人接口Service层接口 /// add liuzq by 2015-11-17 /// public interface IMsgRevManage : IRepository { /// /// 保存接收人 /// bool SaveOrgPerson(string msgid, string useridlist); } }