码迷,mamicode.com
首页 > 其他好文 > 详细

关于layui分页

时间:2019-04-24 10:41:35      阅读:452      评论:0      收藏:0      [点我收藏+]

标签:方法   ble   http   count   map   ssm   null   reg   vat   

 

1.封装通用layUI分页table绑定

技术图片

2.Mapper里的方法

技术图片

3.Mapper.xml 里的处理

<!-- 查询所有信息 -->
<resultMap type="cn.itcast.ssm.po.CompanyCustom" id="selectA"
autoMapping="true">
<id column="cids" property="cids" />

<!-- 多对一 -->
<association property="positiontypeCustom"
javaType="cn.itcast.ssm.po.PositiontypeCustom" autoMapping="true">
<id column="tid" property="tid" />
</association>
</resultMap>
<!-- 查询所有信息 -->
<select id="select" resultMap="selectA">
select
c.cids,c.coid,c.compayname,c.ctel,c.caddress,c.cregisttime,c.isregister,c.cemail,p.tid,p.tname
from company c INNER JOIN positiontype p on c.coid=p.tid where 1=1
<if test="compayname!=null and compayname!=‘‘">
and compayname like ‘%${compayname}%‘
</if>
<if test="caddress != null and caddress != ‘‘">
and caddress like ‘%${caddress}%‘
</if>
limit #{page},#{limit}
</select>
<!-- 查询总条数 -->
<select id="count" resultType="int">
select count(*) from company where 1=1
<if test="compayname!=null and compayname!=‘‘">
and compayname like ‘%${compayname}%‘
</if>
<if test="caddress != null and caddress != ‘‘">
and caddress like ‘%${caddress}%‘
</if>
</select>

 技术图片

技术图片

技术图片

Service 层

技术图片

Impl层

技术图片

Controller 层的处理

技术图片

 

 最后页面+加上模糊查询

技术图片

 

技术图片

技术图片

 

 完结。

 

关于layui分页

标签:方法   ble   http   count   map   ssm   null   reg   vat   

原文地址:https://www.cnblogs.com/xwqllp/p/10760925.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!