IMsgAttachManage.cs 615 B

123456789101112131415161718192021222324
  1. using Central.Control.Domain;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. namespace MES.Production.Service.IService
  7. {
  8. /// <summary>
  9. /// 消息接口附件Service层接口
  10. /// add liuzq by 2015-11-17
  11. /// </summary>
  12. public interface IMsgAttachManage : IRepository<SYS_MSGATTACH>
  13. {
  14. /// <summary>
  15. /// 添加消息附件
  16. /// </summary>
  17. /// <param name="ID">文章ID</param>
  18. /// <param name="str">附件字符串</param>
  19. /// <returns></returns>
  20. bool SaveAttachs(string ID, string str);
  21. }
  22. }