⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 selectproductmanagerimpl.java

📁 基于java的物资管理系统非常好用啊相当简单
💻 JAVA
字号:
package com.university.goodsmanager.biz.service.impl;import java.util.List;import com.university.goodsmanager.biz.service.interf.SelectProductManager;import com.university.goodsmanager.dao.hbndao.HbnDao;import com.university.goodsmanager.dao.hbndao.HbnDaoImpl;public class SelectProductManagerImpl implements SelectProductManager {	public List select(String condition, String which) {		List list=null;		HbnDao hbndao=new HbnDaoImpl();		if("1".equals(which)){			list=hbndao.queryStockPileByCard(condition);		}else if("2".equals(which)){			list=hbndao.queryStockPileByPoduct(condition);		}else if("3".equals(which)){			list=hbndao.queryStockPileByType(condition);		}else if("4".equals(which)){			list=hbndao.queryStockPileByStoreHouse(condition);		}		return list;	}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -