<?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.sc.repairManageInfo.mapper.RepairManageInfoMapper">
|
|
<!-- 通用查询映射结果 -->
|
<resultMap id="BaseResultMap" type="cn.stylefeng.guns.modular.sc.repairManageInfo.entity.RepairManageInfo">
|
<id column="id" property="id" />
|
<result column="sfc" property="sfc" />
|
<result column="production_line" property="productionLine" />
|
<result column="location_code" property="locationCode" />
|
<result column="work_order_no" property="workOrderNo" />
|
<result column="product_code" property="productCode" />
|
<result column="product_name" property="productName" />
|
<result column="manage_type" property="manageType" />
|
<result column="up_plc" property="upPlc" />
|
<result column="operate_time" property="operateTime" />
|
<result column="operate_user" property="operateUser" />
|
<result column="spare_field_1" property="spareField1" />
|
<result column="spare_field_2" property="spareField2" />
|
<result column="spare_field_3" property="spareField3" />
|
<result column="spare_field_4" property="spareField4" />
|
<result column="poor_location_code" property="poorLocationCode" />
|
<result column="poor_content" property="poorContent" />
|
|
|
</resultMap>
|
|
<!-- 通用查询结果列 -->
|
<sql id="Base_Column_List">
|
poor_content AS "poorContent", poor_location_code AS "poorLocationCode", id AS "id", sfc AS "sfc", production_line AS "productionLine", location_code AS "locationCode", work_order_no AS "workOrderNo", product_code AS "productCode", product_name AS "productName", manage_type AS "manageType", up_plc AS "upPlc", operate_time AS "operateTime", operate_user AS "operateUser", spare_field_1 AS "spareField1", spare_field_2 AS "spareField2", spare_field_3 AS "spareField3", spare_field_4 AS "spareField4"
|
</sql>
|
|
|
<select id="customList" resultType="cn.stylefeng.guns.modular.sc.repairManageInfo.model.result.RepairManageInfoResult" parameterType="cn.stylefeng.guns.modular.sc.repairManageInfo.model.params.RepairManageInfoParam">
|
select
|
<include refid="Base_Column_List"/>
|
from sc_repair_manage_info where 1 = 1
|
<if test="paramCondition.sfc != null and paramCondition.sfc != ''">
|
and sfc like CONCAT('%',#{paramCondition.sfc},'%')
|
</if>
|
<if test="paramCondition.productionLine != null and paramCondition.productionLine != ''">
|
and production_line like CONCAT('%',#{paramCondition.productionLine},'%')
|
</if>
|
<if test="paramCondition.locationCode != null and paramCondition.locationCode != ''">
|
and location_code like CONCAT('%',#{paramCondition.locationCode},'%')
|
</if>
|
<if test="paramCondition.workOrderNo != null and paramCondition.workOrderNo != ''">
|
and work_order_no like CONCAT('%',#{paramCondition.workOrderNo},'%')
|
</if>
|
<if test="paramCondition.productCode != null and paramCondition.productCode != ''">
|
and product_code like CONCAT('%',#{paramCondition.productCode},'%')
|
</if>
|
<if test="paramCondition.manageType != null and paramCondition.manageType != ''">
|
and manage_type like CONCAT('%',#{paramCondition.manageType},'%')
|
</if>
|
order by operate_time desc
|
|
</select>
|
|
<select id="customMapList" resultType="map" parameterType="cn.stylefeng.guns.modular.sc.repairManageInfo.model.params.RepairManageInfoParam">
|
select
|
<include refid="Base_Column_List"/>
|
from sc_repair_manage_info where 1 = 1
|
<if test="paramCondition.sfc != null and paramCondition.sfc != ''">
|
and sfc like CONCAT('%',#{paramCondition.sfc},'%')
|
</if>
|
<if test="paramCondition.productionLine != null and paramCondition.productionLine != ''">
|
and production_line like CONCAT('%',#{paramCondition.productionLine},'%')
|
</if>
|
<if test="paramCondition.locationCode != null and paramCondition.locationCode != ''">
|
and location_code like CONCAT('%',#{paramCondition.locationCode},'%')
|
</if>
|
<if test="paramCondition.workOrderNo != null and paramCondition.workOrderNo != ''">
|
and work_order_no like CONCAT('%',#{paramCondition.workOrderNo},'%')
|
</if>
|
<if test="paramCondition.productCode != null and paramCondition.productCode != ''">
|
and product_code like CONCAT('%',#{paramCondition.productCode},'%')
|
</if>
|
<if test="paramCondition.manageType != null and paramCondition.manageType != ''">
|
and manage_type like CONCAT('%',#{paramCondition.manageType},'%')
|
</if>
|
order by operate_time desc
|
|
</select>
|
|
<select id="customPageList" resultType="cn.stylefeng.guns.modular.sc.repairManageInfo.model.result.RepairManageInfoResult" parameterType="cn.stylefeng.guns.modular.sc.repairManageInfo.model.params.RepairManageInfoParam">
|
select
|
<include refid="Base_Column_List"/>
|
from sc_repair_manage_info where 1 = 1
|
<if test="paramCondition.sfc != null and paramCondition.sfc != ''">
|
and sfc like CONCAT('%',#{paramCondition.sfc},'%')
|
</if>
|
<if test="paramCondition.productionLine != null and paramCondition.productionLine != ''">
|
and production_line like CONCAT('%',#{paramCondition.productionLine},'%')
|
</if>
|
<if test="paramCondition.locationCode != null and paramCondition.locationCode != ''">
|
and location_code like CONCAT('%',#{paramCondition.locationCode},'%')
|
</if>
|
<if test="paramCondition.workOrderNo != null and paramCondition.workOrderNo != ''">
|
and work_order_no like CONCAT('%',#{paramCondition.workOrderNo},'%')
|
</if>
|
<if test="paramCondition.productCode != null and paramCondition.productCode != ''">
|
and product_code like CONCAT('%',#{paramCondition.productCode},'%')
|
</if>
|
<if test="paramCondition.manageType != null and paramCondition.manageType != ''">
|
and manage_type like CONCAT('%',#{paramCondition.manageType},'%')
|
</if>
|
order by operate_time desc
|
</select>
|
|
<select id="customPageMapList" resultType="map" parameterType="cn.stylefeng.guns.modular.sc.repairManageInfo.model.params.RepairManageInfoParam">
|
select
|
<include refid="Base_Column_List"/>
|
from sc_repair_manage_info where 1 = 1
|
<if test="paramCondition.sfc != null and paramCondition.sfc != ''">
|
and sfc like CONCAT('%',#{paramCondition.sfc},'%')
|
</if>
|
<if test="paramCondition.productionLine != null and paramCondition.productionLine != ''">
|
and production_line like CONCAT('%',#{paramCondition.productionLine},'%')
|
</if>
|
<if test="paramCondition.locationCode != null and paramCondition.locationCode != ''">
|
and location_code like CONCAT('%',#{paramCondition.locationCode},'%')
|
</if>
|
<if test="paramCondition.workOrderNo != null and paramCondition.workOrderNo != ''">
|
and work_order_no like CONCAT('%',#{paramCondition.workOrderNo},'%')
|
</if>
|
<if test="paramCondition.productCode != null and paramCondition.productCode != ''">
|
and product_code like CONCAT('%',#{paramCondition.productCode},'%')
|
</if>
|
<if test="paramCondition.manageType != null and paramCondition.manageType != ''">
|
and manage_type like CONCAT('%',#{paramCondition.manageType},'%')
|
</if>
|
order by operate_time desc
|
|
</select>
|
|
</mapper>
|