123456789101112131415161718192021222324 |
- using Central.Control.Domain;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace MES.Production.Service.IService
- {
-
-
-
-
- public interface IMsgAttachManage : IRepository<SYS_MSGATTACH>
- {
-
-
-
-
-
-
- bool SaveAttachs(string ID, string str);
- }
- }
|