You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
627 B
25 lines
627 B
package com.epmet.dao;
|
|
|
|
import com.epmet.commons.mybatis.dao.BaseDao;
|
|
import com.epmet.entity.UserCustomerEntity;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
/**
|
|
* @Description 客户用户关系表
|
|
* @IntefaceName UserCustomerDao
|
|
* @Author wangc
|
|
* @date 2020.03.31 13:53
|
|
*/
|
|
@Mapper
|
|
public interface UserCustomerDao extends BaseDao<UserCustomerEntity> {
|
|
|
|
/**
|
|
* desc:修改客户的用户的注册状态为已注册
|
|
*
|
|
* @param customerId
|
|
* @param userId
|
|
* @return
|
|
*/
|
|
int updateRegistered(@Param("customerId") String customerId, @Param("userId") String userId);
|
|
}
|
|
|