You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
udi-wms-java/src/main/resources/mybatis/mapper/system/InvUserProductDao.xml

27 lines
927 B
XML

2 years ago
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.glxp.api.dao.system.SysMenuHelpMapper">
<select id="selectMenuHelpList"
parameterType="com.glxp.api.req.system.SysMenuHelpRequest"
resultType="com.glxp.api.entity.system.SysMenuHelpEntity">
select * from sys_menu_help
<where>
<if test="id != null">
AND id = #{id}
</if>
<if test="menuKey != null and menuKey != ''">
AND menuKey like concat('%',#{menuKey},'%')
</if>
<if test="menuName != null and menuName != ''">
AND menuName like concat('%',#{menuName},'%')
</if>
<if test="status != null">
AND status= #{status}
</if>
</where>
</select>
</mapper>