package com.rainnie.dao;
import java.util.List;
import com.rainnie.po.Customer;
public interface CustomerDao {
//客户列表
public List<Customer> selectCustomerList(Customer customer);
//客户数
public Integer selectCustomerListCount(Customer customer);
//创建客户
public int createCustomer(Customer customer);
/**
* 更新用户,更新用户那么先通过id查询客户
*/
//根据id查询用户
public Customer getCustomerById(Integer id);
//更新用户
public int updateCustomer(Customer customer);
//删除客户
public int deleteCustomer(Integer id);
}
最近下载更多
微信网友_7151914139078656 LV2
2024年9月4日
pangzhihui LV14
2024年6月7日
wananall LV13
2024年3月13日
wuge123 LV8
2023年12月19日
枫林与爱00 LV1
2023年10月11日
周敏国 LV9
2023年9月4日
zcx12345678 LV6
2023年5月16日
Peri_qxy LV2
2023年3月29日
黑 LV7
2023年3月29日
taoshen95 LV16
2022年12月11日

最近浏览