30 lines
839 B
Java
30 lines
839 B
Java
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 {
|
|
long 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);
|
|
} |