package com.itheima.core.dao;
import java.util.List;
import com.itheima.core.po.Customer;
/**
* Customer接口
*/
public interface CustomerDao {
// 客户列表
public List<Customer> selectCustomerList(Customer customer);
// 客户数
public Integer selectCustomerListCount(Customer customer);
// 创建客户
public int createCustomer(Customer customer);
// 通过id查询客户
public Customer getCustomerById(Integer id);
// 更新客户信息
public int updateCustomer(Customer customer);
// 删除客户
int deleteCustomer (Integer id);
}
最近下载更多
武诗雨 LV1
6月4日
GUANG001 LV1
2024年6月17日
2131234536546 LV7
2024年3月31日
周敏国 LV9
2023年9月4日
ExamplesDYC LV13
2023年8月31日
yangbulx LV3
2023年6月7日
海棠花瘦 LV9
2023年5月24日
meizugm LV1
2023年3月9日
nanqindaxia LV2
2023年3月3日
46900596 LV12
2023年3月1日

最近浏览
