添加权限管理功能
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
package com.macro.mall.mapper;
|
||||
|
||||
import com.macro.mall.model.UmsRole;
|
||||
import com.macro.mall.model.UmsRoleExample;
|
||||
import java.util.List;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
public interface UmsRoleMapper {
|
||||
int countByExample(UmsRoleExample example);
|
||||
|
||||
int deleteByExample(UmsRoleExample example);
|
||||
|
||||
int deleteByPrimaryKey(Long id);
|
||||
|
||||
int insert(UmsRole record);
|
||||
|
||||
int insertSelective(UmsRole record);
|
||||
|
||||
List<UmsRole> selectByExample(UmsRoleExample example);
|
||||
|
||||
UmsRole selectByPrimaryKey(Long id);
|
||||
|
||||
int updateByExampleSelective(@Param("record") UmsRole record, @Param("example") UmsRoleExample example);
|
||||
|
||||
int updateByExample(@Param("record") UmsRole record, @Param("example") UmsRoleExample example);
|
||||
|
||||
int updateByPrimaryKeySelective(UmsRole record);
|
||||
|
||||
int updateByPrimaryKey(UmsRole record);
|
||||
}
|
||||
Reference in New Issue
Block a user