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

/**
* @author lenovo
* @description 针对表【tb_customer_im(客户IM帐户表)】的数据库操作Mapper
* @createDate 2023-09-10 12:22:37
* @Entity com.example.his.api.db.pojo.CustomerImEntity
*/
public interface CustomerImDao {
    // IM-客服新增
    public int insertCustomerIM(int customerId);
}




