liuxm
2024-05-16 1494d3e47a0dbdc5f49dacd779b5ffab871a2022
pms-parent/pms-global/src/main/java/com/dy/pmsGlobal/daoBa/BaRoleMapper.java
@@ -1,10 +1,12 @@
package com.dy.pmsGlobal.daoBa;
import com.dy.pmsGlobal.pojoBa.BaRole;
import com.dy.pmsGlobal.pojoBa.BaUser;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import java.util.List;
import java.util.Map;
@Mapper
public interface BaRoleMapper {
@@ -29,4 +31,17 @@
    int deleteByPrimaryKey(Long id);
    /**
     * 逻辑删除
     * @param id primaryKey
     * @return update count
     */
    int deleteLogicById(Long id);
    Long selectSomeCount(Map<String, Object> params);
    List<BaRole> selectSome(Map<String, Object> params);
    List<BaRole> selectAll();
}