18 lines
488 B
Java
18 lines
488 B
Java
package com.jsh.erp.datasource.mappers;
|
|
|
|
import com.jsh.erp.datasource.entities.Role;
|
|
import com.jsh.erp.datasource.entities.RoleExample;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
import java.util.List;
|
|
|
|
public interface RoleMapperEx {
|
|
|
|
List<Role> selectByConditionRole(
|
|
@Param("name") String name,
|
|
@Param("offset") Integer offset,
|
|
@Param("rows") Integer rows);
|
|
|
|
Long countsByRole(
|
|
@Param("name") String name);
|
|
} |