KakoUserMapper.java 841 字节
package com.tianbo.warehouse.dao;

import com.tianbo.warehouse.model.KakoUser;
import org.apache.ibatis.annotations.Param;

import java.util.List;

public interface KakoUserMapper {
    int deleteByPrimaryKey(String id);

    int insert(KakoUser record);

    int insertSelective(KakoUser record);

    KakoUser selectByPrimaryKey(String id);

    int updateByPrimaryKeySelective(KakoUser record);

    int updateByPrimaryKey(KakoUser record);

    List<KakoUser> selectByUsername(String userName);

    List<KakoUser> selectAllUser(KakoUser record);

    int lockUser(KakoUser record);

    KakoUser findLonginName(@Param(value = "loginName") String loginName,
                            @Param(value = "userSyncId") String userSyncId);

    int updateSyncUserLoginName(KakoUser kakoUser);
    int updateSyncUserId(KakoUser kakoUser);



}