123456789101112131415161718192021222324252627 |
-
- using CZFW.Framework.Model.Entity;
- namespace CZFW.Framework.Interface
- {
- public interface ISeoShare : ILogicBase<SeoShareEntity>
- {
- SeoShareEntity GetItemByMark(string mark);
- SeoShareEntity GetItemByUrl(string url);
- }
- }
|