UserRoleMapper.java 563 字节
package com.tianbo.warehouse.dao;

import com.tianbo.warehouse.model.KakoUserRole;
import com.tianbo.warehouse.model.UserRole;

public interface UserRoleMapper {
    int deleteByPrimaryKey(Integer id);

    int deleteByUserId(Integer userId);

    int deleteByUserIdKako(String userId);

    int insert(UserRole record);

    int insertSelective(UserRole record);

    int insertSelectiveKako(KakoUserRole record);

    UserRole selectByPrimaryKey(Integer id);

    int updateByPrimaryKeySelective(UserRole record);

    int updateByPrimaryKey(UserRole record);
}