ISEOShare.cs 1.0 KB

123456789101112131415161718192021222324252627
  1. /**
  2. * 命名空间: CZFW.Framework.SEOShare
  3. *
  4. * 功 能: N/A
  5. * 类 名: Interface
  6. *
  7. * Ver 变更日期 负责人 变更内容
  8. * ───────────────────────────────────
  9. * V0.01 2017/1/3 20:57:37 曹湘 初稿
  10. *
  11. * Copyright (c) 2016 CHUANGZHIKEJI Corporation. All rights reserved.
  12. *┌──────────────────────────────────┐
  13. *│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │
  14. *│ 版权所有:创执科技(北京)有限公司               
  15. *└──────────────────────────────────┘
  16. */
  17. using CZFW.Framework.Model.Entity;
  18. namespace CZFW.Framework.Interface
  19. {
  20. public interface ISeoShare : ILogicBase<SeoShareEntity>
  21. {
  22. SeoShareEntity GetItemByMark(string mark);
  23. SeoShareEntity GetItemByUrl(string url);
  24. }
  25. }