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 IMsgAttachManage : IRepository { /// /// 添加消息附件 /// /// 文章ID /// 附件字符串 /// bool SaveAttachs(string ID, string str); } }