1234567891011121314151617181920212223242526272829303132333435 |
- /**
- * 命名空间: CZFW.Framework.SEOShare.Logic
- *
- * 功 能: N/A
- * 类 名: SEOShareLogic
- *
- * Ver 变更日期 负责人 变更内容
- * ───────────────────────────────────
- * V0.01 2017/1/3 21:00:30 曹湘 初稿
- *
- * Copyright (c) 2016 CHUANGZHIKEJI Corporation. All rights reserved.
- *┌──────────────────────────────────┐
- *│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │
- *│ 版权所有:创执科技(北京)有限公司
- *└──────────────────────────────────┘
- */
- using CZFW.Framework.Interface;
- using CZFW.Framework.Model.Entity;
- namespace CZFW.Framework.Logic
- {
- public class SeoShareLogic : LogicBase<SeoShareEntity>, ISeoShare
- {
- public SeoShareEntity GetItemByMark(string mark)
- {
- return GetEntity(x => x.Mark == mark);
- }
- public SeoShareEntity GetItemByUrl(string url)
- {
- return GetEntity(x => x.Url == url);
- }
- }
- }
|