zhangherong
2025-05-12 7e254edced5f0361882471ebffbad572c181235d
lxzn-module-system/lxzn-system-biz/src/main/java/org/jeecg/modules/system/mapper/SysCategoryMapper.java
@@ -3,6 +3,8 @@
import java.util.List;
import java.util.Map;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.toolkit.Constants;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.annotations.Select;
import org.jeecg.modules.system.entity.SysCategory;
@@ -33,6 +35,7 @@
     */
   @Select("SELECT ID FROM sys_category WHERE CODE = #{code,jdbcType=VARCHAR}")
   public String queryIdByCode(@Param("code")  String code);
    List<SysCategory> listByParams(@Param(Constants.WRAPPER) QueryWrapper<SysCategory> queryWrapper);
}