关于layui分页

 

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

关于layui分页

2.Mapper里的方法

关于layui分页

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>

 关于layui分页

关于layui分页

关于layui分页

Service 层

关于layui分页

Impl层

关于layui分页

Controller 层的处理

关于layui分页

 

 最后页面+加上模糊查询

关于layui分页

 

关于layui分页

关于layui分页

 

 完结。

 

上一篇:Android-Throwable: A WebView method was called on thread 'JavaBridge'.


下一篇:实时获取淘宝天猫商品的评价晒单数据