init
This commit is contained in:
BIN
target/classes/cn/wujiangbo/mapper/app/AppSuggestionMapper.class
Normal file
BIN
target/classes/cn/wujiangbo/mapper/app/AppSuggestionMapper.class
Normal file
Binary file not shown.
@@ -0,0 +1,17 @@
|
||||
<?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="cn.wujiangbo.mapper.app.AppSuggestionMapper">
|
||||
|
||||
<select id="selectMySqlPage" resultType="cn.wujiangbo.domain.app.AppSuggestion">
|
||||
select t1.*, t2.real_name as createUserName
|
||||
from app_suggestion t1
|
||||
left join sys_user t2 on t1.user_id = t2.id
|
||||
<where>
|
||||
<if test="query.keyword != null and query.keyword != '' ">
|
||||
and t1.complaint like concat('%', #{query.keyword}, '%')
|
||||
</if>
|
||||
</where>
|
||||
order by t1.id desc
|
||||
</select>
|
||||
|
||||
</mapper>
|
||||
BIN
target/classes/cn/wujiangbo/mapper/app/AppSwiperMapper.class
Normal file
BIN
target/classes/cn/wujiangbo/mapper/app/AppSwiperMapper.class
Normal file
Binary file not shown.
14
target/classes/cn/wujiangbo/mapper/app/AppSwiperMapper.xml
Normal file
14
target/classes/cn/wujiangbo/mapper/app/AppSwiperMapper.xml
Normal file
@@ -0,0 +1,14 @@
|
||||
<?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="cn.wujiangbo.mapper.app.AppSwiperMapper">
|
||||
|
||||
<select id="selectMySqlPage" resultType="cn.wujiangbo.domain.app.AppSwiper">
|
||||
select t1.*
|
||||
from app_swiper t1
|
||||
<where>
|
||||
<if test="query.keyword != null and query.keyword != '' ">
|
||||
and t1.img_desc like concat('%', #{query.keyword}, '%')
|
||||
</if>
|
||||
</where>
|
||||
</select>
|
||||
</mapper>
|
||||
BIN
target/classes/cn/wujiangbo/mapper/app/AppUserMapper.class
Normal file
BIN
target/classes/cn/wujiangbo/mapper/app/AppUserMapper.class
Normal file
Binary file not shown.
14
target/classes/cn/wujiangbo/mapper/app/AppUserMapper.xml
Normal file
14
target/classes/cn/wujiangbo/mapper/app/AppUserMapper.xml
Normal file
@@ -0,0 +1,14 @@
|
||||
<?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="cn.wujiangbo.mapper.app.AppUserMapper">
|
||||
|
||||
<select id="selectMySqlPage" resultType="cn.wujiangbo.domain.app.AppUser">
|
||||
select t1.*
|
||||
from app_user t1
|
||||
<where>
|
||||
<if test="query.keyword != null and query.keyword != '' ">
|
||||
and t1.login_name like concat('%', #{query.keyword}, '%')
|
||||
</if>
|
||||
</where>
|
||||
</select>
|
||||
</mapper>
|
||||
BIN
target/classes/cn/wujiangbo/mapper/system/SysUserMapper.class
Normal file
BIN
target/classes/cn/wujiangbo/mapper/system/SysUserMapper.class
Normal file
Binary file not shown.
@@ -0,0 +1,5 @@
|
||||
<?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="cn.wujiangbo.mapper.system.SysUserMapper">
|
||||
|
||||
</mapper>
|
||||
Reference in New Issue
Block a user