icustomerdao.java
来自「该系统的主要功能是」· Java 代码 · 共 12 行
JAVA
12 行
package com.laoniu.dao;
import com.laoniu.bean.Customer;
public interface ICustomerDao {
//保存和更新用户
void saveOrupdateCustomer(Customer customer) throws Exception;
//查找用户
Customer findCustomerByName(String name) throws Exception;
Customer findCustomerById(Long id)throws Exception;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?