UserRoleMapper.java
420 字节
package com.tianbo.warehouse.dao;
import com.tianbo.warehouse.model.UserRole;
public interface UserRoleMapper {
int deleteByPrimaryKey(Integer id);
int deleteByUserId(Integer userId);
int insert(UserRole record);
int insertSelective(UserRole record);
UserRole selectByPrimaryKey(Integer id);
int updateByPrimaryKeySelective(UserRole record);
int updateByPrimaryKey(UserRole record);
}