icustomerservice.java

来自「该系统的主要功能是」· Java 代码 · 共 16 行

JAVA
16
字号
package com.laoniu.service;

import com.laoniu.bean.Customer;
import com.laoniu.common.exception.CustomerServiceException;

public interface ICustomerService {
	//用户注册
	void register(Customer customer) throws CustomerServiceException; 
	//用户登陆
	Customer login(String name,String password) throws CustomerServiceException;
	//用户更新
	void update(Customer customer) throws CustomerServiceException; 
	Customer findByname(String name)throws CustomerServiceException;
	Customer findByid(Long id)throws CustomerServiceException;
}

⌨️ 快捷键说明

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