📄 productbo.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 + -