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

📄 rmrecommandinterface.java

📁 电信的网厅的整站代码
💻 JAVA
字号:
/**
 * 
 */
package com.doone.fj1w.fjmgr.sysmgr;

import java.sql.SQLException;
import java.util.Map;

import com.doone.data.DataTable;

/**
 * <title>推荐产品定义</title>
 * 
 * @author predan
 * 
 */
public interface RMRecommandInterface {

	/**
	 * 增加推荐产品
	 * @param rmrpb RMRecommandProductBean对象
	 * @throws SQLException
	 */
	public void insertRMRecommandProduct(RMRecommandProductBean rmrpb) throws SQLException;

	/**
	 * 修改推荐产品信息
	 * @param rmrb RMRecommandProductBean对象
	 * @return
	 * @throws SQLException
	 */
	public int updateRMRecommandProduct(RMRecommandProductBean rmrb) throws SQLException;

	/**
	 * 删除推荐产品
	 * @param number 产品序号
	 * @return
	 * @throws SQLException
	 */
	public int deleteRMRecommandProduct(Long number) throws SQLException;

	/**
	 * 通过条件查询符合条件的推荐产品总数
	 * @param map
	 * @return
	 */
	public int getRecommandProductCount(Map map)throws SQLException;
	
	/**
	 * 通过条件查询符合条件的推荐产品列表
	 * @param map
	 * @return
	 */
	public DataTable getRecommandProductList(Map map)throws SQLException;
	
	/**
	 * 增加推荐产品条件
	 * @param rmrcb RMRecommendConditionBean对象
	 */
	public void insertRMRecommendCondition(RMRecommendConditionBean rmrcb)throws SQLException;
	
	/**
	 * 删除推荐产品条件
	 * @param number 产品序号
	 * @return
	 * @throws SQLException
	 */
	public int deleteRMRecommandCondition(Long number) throws SQLException;
	
	/**
	 * 通过产品序号获取产品信息
	 * @param number 产品序号
	 * @return
	 * @throws SQLException
	 */
	public DataTable getRMRecommandProductBean(Long number)throws SQLException;
	
	/**
	 * 通过产品序号获取产品条件信息
	 * @param number 产品序号
	 * @return
	 * @throws SQLException
	 */
	public DataTable getRMRecommendConditionBean(Long number)throws SQLException;
	
	/**
	 * 获取所有的产品列表
	 * @return
	 * @throws SQLException
	 */
	public DataTable getProduct()throws SQLException;
	
	/**
	 * 通过产品序号获取所属的程控
	 * @param productId
	 * @param cityCode
	 * @return
	 * @throws SQLException
	 */
	public DataTable getProgrammedByProduct(String productId,String cityCode)throws SQLException;
	
	
	public long get_seq_recommandid()throws SQLException;
	
	
	public long get_seq_recommandconditionid()throws SQLException;
	
	
	public DataTable getUpRMRecommend(Long number)throws SQLException;
	
	public DataTable getProgrammed(String upConditionId)throws SQLException;
	
	/**
	 * 根据标识字符获取最高,最低,普通级别指数
	 * @param flag
	 * @return
	 * @throws SQLException
	 */
	public int get_max_min_avg_rmindex(String flag)throws SQLException;
}

⌨️ 快捷键说明

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