All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.mingsoft.cms.biz.impl.HistoryLogBizImpl Maven / Gradle / Ivy

There is a newer version: 5.4.2
Show newest version
/**
 * Copyright (c) 2020 铭软科技(mingsoft.net)
 * 本软件及相关文档文件(以下简称“软件”)的版权归 铭软科技 所有
 * 遵循铭软科技《保密协议》
 */



package net.mingsoft.cms.biz.impl;

import net.mingsoft.cms.biz.IHistoryLogBiz;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import net.mingsoft.base.biz.impl.BaseBizImpl;
import net.mingsoft.base.dao.IBaseDao;
import net.mingsoft.cms.dao.ICmsHistoryLogDao;

/**
 * 文章浏览记录管理持久化层
 * @author 铭飞开发团队
 * 创建日期:2019-12-23 9:24:03
* 历史修订:
*/ @Service("cmshistoryLogBizImpl") public class HistoryLogBizImpl extends BaseBizImpl implements IHistoryLogBiz { @Autowired private ICmsHistoryLogDao historyLogDao; @Override protected IBaseDao getDao() { // TODO Auto-generated method stub return historyLogDao; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy