<?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.isoft91.gonn.gps.business.mapper.OaCBusiConfMapper">
<resultMap id="oaBuifConfPage" type="com.isoft91.gonn.gps.business.entity.OaCBusiConf">
<!--非主键字段的对应 实体类属性名 数据库类名-->
<id property="id" column="id"></id>
</resultMap>
<select id="selectConfList" resultMap="oaBuifConfPage">
select * from oa_c_busi_conf
where
flag='0'
<if test="vo.type!=null and vo.type!=''">
and type =#{vo.type}
</if>
<if test="vo.key!=null and vo.key!=''">
and `key` =#{vo.key}
</if>
<if test="vo.value!=null and vo.value!=''">
and value =#{vo.value}
</if>
<if test="vo.pId!=null and vo.pId!=''">
and pid =#{vo.pId}
</if>
</select>
</mapper>
-
由 wulf 提交于add4b7de