IMsgManage.cs 345 B

12345678910111213141516
  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 IMsgManage : IRepository<SYS_MSG>
  13. {
  14. }
  15. }