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

📄 productbo.java

📁 选择和管理有价值客户及其关系的一种商业策略
💻 JAVA
字号:
package com.tarena.crm.product.service;


public interface ProductBO
{
	/**
	 * 将产品数据对象添加到数据库中
	 */
	public String createProduct(ProductVO productVO);

	/**
	 * 将产品数据对象更新到数据库中
	 */
	public void updateProduct(ProductVO productVO);

	/**
	 * 根据标识,查询产品数据对象
	 */
	public Product get(String productId);

	/**
	 * 根据多种查询条件来查询产品数据对象
	 */

	public List queryProdyctListByName(String name);

	public List queryProductListByType(String type);

	public List queryProductListByStatus(String status);
}

⌨️ 快捷键说明

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