123456789101112131415161718192021222324 |
- using Central.Control.Domain;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace MES.Production.Service.IService
- {
- /// <summary>
- /// 消息接口附件Service层接口
- /// add liuzq by 2015-11-17
- /// </summary>
- public interface IMsgAttachManage : IRepository<SYS_MSGATTACH>
- {
- /// <summary>
- /// 添加消息附件
- /// </summary>
- /// <param name="ID">文章ID</param>
- /// <param name="str">附件字符串</param>
- /// <returns></returns>
- bool SaveAttachs(string ID, string str);
- }
- }
|