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

import com.tianbo.warehouse.model.KakoUser;

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);


}