package net.mingsoft.tf.biz.impl; 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 java.util.*; import net.mingsoft.tf.entity.BoothEntity; import net.mingsoft.tf.biz.IBoothBiz; import net.mingsoft.tf.dao.IBoothDao; /** * 展位管理持久化层 * @author 阿白 * 创建日期:2025年10月23日 下午6:08:01
* 历史修订:
*/ @Service("tfboothBizImpl") public class BoothBizImpl extends BaseBizImpl implements IBoothBiz { @Autowired private IBoothDao boothDao; @Override protected IBaseDao getDao() { // TODO Auto-generated method stub return boothDao; } }