package com.example.his.api.db.dao;

import com.example.his.api.db.pojo.CustomerEntity;

import java.util.HashMap;
import java.util.Map;

/**
* @author lenovo
* @description 针对表【tb_customer(客户表)】的数据库操作Mapper
* @createDate 2023-09-10 12:22:37
* @Entity com.example.his.api.db.pojo.CustomerEntity
*/
public interface CustomerDao {
    public Integer searchCustomerById(String tel);

    public int insertCustomer(CustomerEntity customerEntity);

    public HashMap searchCustomer(Map param);

    public int updateCustomer(Map param);

    public HashMap searchById(int id);
}




