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

📄 icustomerdao.java

📁 该系统的主要功能是
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -