<?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.stylefeng.guns.modular.zsx.bs.productRouteChildInfo.mapper.ProductRouteChildInfoMapper">
|
|
<!-- 通用查询映射结果 -->
|
<resultMap id="BaseResultMap" type="cn.stylefeng.guns.modular.zsx.bs.productRouteChildInfo.entity.ProductRouteChildInfo">
|
<id column="id" property="id" />
|
<result column="op_code" property="opCode" />
|
<result column="op_name" property="opName" />
|
<result column="step_no" property="stepNo" />
|
<result column="op_type" property="opType" />
|
<result column="spare_field_1" property="spareField1" />
|
<result column="spare_field_2" property="spareField2" />
|
<result column="spare_field_3" property="spareField3" />
|
<result column="remark" property="remark" />
|
<result column="route_code" property="routeCode" />
|
</resultMap>
|
|
<!-- 通用查询结果列 -->
|
<sql id="Base_Column_List">
|
id AS "id", op_code AS "opCode", op_name AS "opName", step_no AS "stepNo", op_type AS "opType", spare_field_1 AS "spareField1", spare_field_2 AS "spareField2", spare_field_3 AS "spareField3", remark AS "remark", route_code AS "routeCode"
|
</sql>
|
|
|
<select id="customList" resultType="cn.stylefeng.guns.modular.zsx.bs.productRouteChildInfo.model.result.ProductRouteChildInfoResult" parameterType="cn.stylefeng.guns.modular.zsx.bs.productRouteChildInfo.model.params.ProductRouteChildInfoParam">
|
select
|
<include refid="Base_Column_List"/>
|
from bs_product_route_child_info where 1 = 1
|
<if test="paramCondition.opCode != null and paramCondition.opCode != ''">
|
and op_code like CONCAT('%',#{paramCondition.opCode},'%')
|
</if>
|
<if test="paramCondition.opName != null and paramCondition.opName != ''">
|
and op_name like CONCAT('%',#{paramCondition.opName},'%')
|
</if>
|
<if test="paramCondition.opType != null and paramCondition.opType != ''">
|
and op_type like CONCAT('%',#{paramCondition.opType},'%')
|
</if>
|
<if test="paramCondition.routeCode != null and paramCondition.routeCode != ''">
|
and route_code like CONCAT('%',#{paramCondition.routeCode},'%')
|
</if>
|
</select>
|
|
<select id="customMapList" resultType="map" parameterType="cn.stylefeng.guns.modular.zsx.bs.productRouteChildInfo.model.params.ProductRouteChildInfoParam">
|
select
|
<include refid="Base_Column_List"/>
|
from bs_product_route_child_info where 1 = 1
|
<if test="paramCondition.opCode != null and paramCondition.opCode != ''">
|
and op_code like CONCAT('%',#{paramCondition.opCode},'%')
|
</if>
|
<if test="paramCondition.opName != null and paramCondition.opName != ''">
|
and op_name like CONCAT('%',#{paramCondition.opName},'%')
|
</if>
|
<if test="paramCondition.opType != null and paramCondition.opType != ''">
|
and op_type like CONCAT('%',#{paramCondition.opType},'%')
|
</if>
|
<if test="paramCondition.routeCode != null and paramCondition.routeCode != ''">
|
and route_code like CONCAT('%',#{paramCondition.routeCode},'%')
|
</if>
|
</select>
|
|
<select id="customPageList" resultType="cn.stylefeng.guns.modular.zsx.bs.productRouteChildInfo.model.result.ProductRouteChildInfoResult" parameterType="cn.stylefeng.guns.modular.zsx.bs.productRouteChildInfo.model.params.ProductRouteChildInfoParam">
|
select
|
<include refid="Base_Column_List"/>
|
from bs_product_route_child_info where 1 = 1
|
<if test="paramCondition.opCode != null and paramCondition.opCode != ''">
|
and op_code like CONCAT('%',#{paramCondition.opCode},'%')
|
</if>
|
<if test="paramCondition.opName != null and paramCondition.opName != ''">
|
and op_name like CONCAT('%',#{paramCondition.opName},'%')
|
</if>
|
<if test="paramCondition.opType != null and paramCondition.opType != ''">
|
and op_type like CONCAT('%',#{paramCondition.opType},'%')
|
</if>
|
<if test="paramCondition.routeCode != null and paramCondition.routeCode != ''">
|
and route_code like CONCAT('%',#{paramCondition.routeCode},'%')
|
</if>
|
</select>
|
|
<select id="customPageMapList" resultType="map" parameterType="cn.stylefeng.guns.modular.zsx.bs.productRouteChildInfo.model.params.ProductRouteChildInfoParam">
|
select
|
<include refid="Base_Column_List"/>
|
from bs_product_route_child_info where 1 = 1
|
<if test="paramCondition.opCode != null and paramCondition.opCode != ''">
|
and op_code like CONCAT('%',#{paramCondition.opCode},'%')
|
</if>
|
<if test="paramCondition.opName != null and paramCondition.opName != ''">
|
and op_name like CONCAT('%',#{paramCondition.opName},'%')
|
</if>
|
<if test="paramCondition.opType != null and paramCondition.opType != ''">
|
and op_type like CONCAT('%',#{paramCondition.opType},'%')
|
</if>
|
<if test="paramCondition.routeCode != null and paramCondition.routeCode != ''">
|
and route_code like CONCAT('%',#{paramCondition.routeCode},'%')
|
</if>
|
</select>
|
|
</mapper>
|