|
|
@@ -0,0 +1,528 @@
|
|
|
+<?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.steerinfo.baseinfo.meterbaseuserprintconfig.mapper.MeterBaseUserPrintConfigMapper">
|
|
|
+ <resultMap id="BaseResultMap" type="com.steerinfo.baseinfo.meterbaseuserprintconfig.model.MeterBaseUserPrintConfig">
|
|
|
+ <id column="PRINT_ID" jdbcType="VARCHAR" property="printId" />
|
|
|
+ <result column="USER_ID" jdbcType="VARCHAR" property="userId" />
|
|
|
+ <result column="USER_NAME" jdbcType="VARCHAR" property="userName" />
|
|
|
+ <result column="MATTER_NO" jdbcType="VARCHAR" property="matterNo" />
|
|
|
+ <result column="MATTER_NAME" jdbcType="VARCHAR" property="matterName" />
|
|
|
+ <result column="FORWARDING_UNIT_NO" jdbcType="VARCHAR" property="forwardingUnitNo" />
|
|
|
+ <result column="FORWARDING_UNIT_NAME" jdbcType="VARCHAR" property="forwardingUnitName" />
|
|
|
+ <result column="RECEIVING_UINT_NO" jdbcType="VARCHAR" property="receivingUintNo" />
|
|
|
+ <result column="RECEIVING_UINT_NAME" jdbcType="VARCHAR" property="receivingUintName" />
|
|
|
+ <result column="CREATE_MAN_NO" jdbcType="VARCHAR" property="createManNo" />
|
|
|
+ <result column="CREATE_MAN_NAME" jdbcType="VARCHAR" property="createManName" />
|
|
|
+ <result column="CREATE_TIME" jdbcType="TIMESTAMP" property="createTime" />
|
|
|
+ <result column="UPDATE_MAN_NO" jdbcType="VARCHAR" property="updateManNo" />
|
|
|
+ <result column="UPDATE_MAN_NAME" jdbcType="VARCHAR" property="updateManName" />
|
|
|
+ <result column="UPDATE_TIME" jdbcType="TIMESTAMP" property="updateTime" />
|
|
|
+ <result column="VALUE_FLAG" jdbcType="VARCHAR" property="valueFlag" />
|
|
|
+ </resultMap>
|
|
|
+ <sql id="columns">
|
|
|
+ PRINT_ID, USER_ID, USER_NAME, MATTER_NO, MATTER_NAME, FORWARDING_UNIT_NO, FORWARDING_UNIT_NAME,
|
|
|
+ RECEIVING_UINT_NO, RECEIVING_UINT_NAME, CREATE_MAN_NO, CREATE_MAN_NAME, CREATE_TIME,
|
|
|
+ UPDATE_MAN_NO, UPDATE_MAN_NAME, UPDATE_TIME, VALUE_FLAG
|
|
|
+ </sql>
|
|
|
+ <sql id="columns_alias">
|
|
|
+ t.PRINT_ID, t.USER_ID, t.USER_NAME, t.MATTER_NO, t.MATTER_NAME, t.FORWARDING_UNIT_NO,
|
|
|
+ t.FORWARDING_UNIT_NAME, t.RECEIVING_UINT_NO, t.RECEIVING_UINT_NAME, t.CREATE_MAN_NO,
|
|
|
+ t.CREATE_MAN_NAME, t.CREATE_TIME, t.UPDATE_MAN_NO, t.UPDATE_MAN_NAME, t.UPDATE_TIME,
|
|
|
+ t.VALUE_FLAG
|
|
|
+ </sql>
|
|
|
+ <sql id="select">
|
|
|
+ SELECT <include refid="columns" /> FROM METER_BASE_USER_PRINT_CONFIG
|
|
|
+ </sql>
|
|
|
+ <sql id="select_alias">
|
|
|
+ SELECT <include refid="columns_alias" /> FROM METER_BASE_USER_PRINT_CONFIG t
|
|
|
+ </sql>
|
|
|
+ <sql id="where">
|
|
|
+ <where>
|
|
|
+ <if test="printId != null and printId != ''">
|
|
|
+ and PRINT_ID = #{printId}
|
|
|
+ </if>
|
|
|
+ <if test="userId != null and userId != ''">
|
|
|
+ and USER_ID = #{userId}
|
|
|
+ </if>
|
|
|
+ <if test="userName != null and userName != ''">
|
|
|
+ and USER_NAME = #{userName}
|
|
|
+ </if>
|
|
|
+ <if test="matterNo != null and matterNo != ''">
|
|
|
+ and MATTER_NO = #{matterNo}
|
|
|
+ </if>
|
|
|
+ <if test="matterName != null and matterName != ''">
|
|
|
+ and MATTER_NAME = #{matterName}
|
|
|
+ </if>
|
|
|
+ <if test="forwardingUnitNo != null and forwardingUnitNo != ''">
|
|
|
+ and FORWARDING_UNIT_NO = #{forwardingUnitNo}
|
|
|
+ </if>
|
|
|
+ <if test="forwardingUnitName != null and forwardingUnitName != ''">
|
|
|
+ and FORWARDING_UNIT_NAME = #{forwardingUnitName}
|
|
|
+ </if>
|
|
|
+ <if test="receivingUintNo != null and receivingUintNo != ''">
|
|
|
+ and RECEIVING_UINT_NO = #{receivingUintNo}
|
|
|
+ </if>
|
|
|
+ <if test="receivingUintName != null and receivingUintName != ''">
|
|
|
+ and RECEIVING_UINT_NAME = #{receivingUintName}
|
|
|
+ </if>
|
|
|
+ <if test="createManNo != null and createManNo != ''">
|
|
|
+ and CREATE_MAN_NO = #{createManNo}
|
|
|
+ </if>
|
|
|
+ <if test="createManName != null and createManName != ''">
|
|
|
+ and CREATE_MAN_NAME = #{createManName}
|
|
|
+ </if>
|
|
|
+ <if test="createTime != null">
|
|
|
+ and TO_CHAR(CREATE_TIME,'yyyy-MM-dd') = #{createTime}
|
|
|
+ </if>
|
|
|
+ <if test="updateManNo != null and updateManNo != ''">
|
|
|
+ and UPDATE_MAN_NO = #{updateManNo}
|
|
|
+ </if>
|
|
|
+ <if test="updateManName != null and updateManName != ''">
|
|
|
+ and UPDATE_MAN_NAME = #{updateManName}
|
|
|
+ </if>
|
|
|
+ <if test="updateTime != null">
|
|
|
+ and TO_CHAR(UPDATE_TIME,'yyyy-MM-dd') = #{updateTime}
|
|
|
+ </if>
|
|
|
+ <if test="valueFlag != null and valueFlag != ''">
|
|
|
+ and VALUE_FLAG = #{valueFlag}
|
|
|
+ </if>
|
|
|
+ </where>
|
|
|
+ </sql>
|
|
|
+ <sql id="whereLike">
|
|
|
+ <where>
|
|
|
+ <if test="printId != null and printId != ''">
|
|
|
+ and PRINT_ID LIKE '%${printId}%'
|
|
|
+ </if>
|
|
|
+ <if test="userId != null and userId != ''">
|
|
|
+ and USER_ID LIKE '%${userId}%'
|
|
|
+ </if>
|
|
|
+ <if test="userName != null and userName != ''">
|
|
|
+ and USER_NAME LIKE '%${userName}%'
|
|
|
+ </if>
|
|
|
+ <if test="matterNo != null and matterNo != ''">
|
|
|
+ and MATTER_NO LIKE '%${matterNo}%'
|
|
|
+ </if>
|
|
|
+ <if test="matterName != null and matterName != ''">
|
|
|
+ and MATTER_NAME LIKE '%${matterName}%'
|
|
|
+ </if>
|
|
|
+ <if test="forwardingUnitNo != null and forwardingUnitNo != ''">
|
|
|
+ and FORWARDING_UNIT_NO LIKE '%${forwardingUnitNo}%'
|
|
|
+ </if>
|
|
|
+ <if test="forwardingUnitName != null and forwardingUnitName != ''">
|
|
|
+ and FORWARDING_UNIT_NAME LIKE '%${forwardingUnitName}%'
|
|
|
+ </if>
|
|
|
+ <if test="receivingUintNo != null and receivingUintNo != ''">
|
|
|
+ and RECEIVING_UINT_NO LIKE '%${receivingUintNo}%'
|
|
|
+ </if>
|
|
|
+ <if test="receivingUintName != null and receivingUintName != ''">
|
|
|
+ and RECEIVING_UINT_NAME LIKE '%${receivingUintName}%'
|
|
|
+ </if>
|
|
|
+ <if test="createManNo != null and createManNo != ''">
|
|
|
+ and CREATE_MAN_NO LIKE '%${createManNo}%'
|
|
|
+ </if>
|
|
|
+ <if test="createManName != null and createManName != ''">
|
|
|
+ and CREATE_MAN_NAME LIKE '%${createManName}%'
|
|
|
+ </if>
|
|
|
+ <if test="createTime != null">
|
|
|
+ and TO_CHAR(CREATE_TIME,'yyyy-MM-dd') = #{createTime}
|
|
|
+ </if>
|
|
|
+ <if test="updateManNo != null and updateManNo != ''">
|
|
|
+ and UPDATE_MAN_NO LIKE '%${updateManNo}%'
|
|
|
+ </if>
|
|
|
+ <if test="updateManName != null and updateManName != ''">
|
|
|
+ and UPDATE_MAN_NAME LIKE '%${updateManName}%'
|
|
|
+ </if>
|
|
|
+ <if test="updateTime != null">
|
|
|
+ and TO_CHAR(UPDATE_TIME,'yyyy-MM-dd') = #{updateTime}
|
|
|
+ </if>
|
|
|
+ <if test="valueFlag != null and valueFlag != ''">
|
|
|
+ and VALUE_FLAG LIKE '%${valueFlag}%'
|
|
|
+ </if>
|
|
|
+ </where>
|
|
|
+ </sql>
|
|
|
+ <delete id="deleteByPrimaryKey" parameterType="java.lang.String">
|
|
|
+ delete from METER_BASE_USER_PRINT_CONFIG
|
|
|
+ where PRINT_ID = #{printId,jdbcType=VARCHAR}
|
|
|
+ </delete>
|
|
|
+ <delete id="deleteBySelectiveElement" parameterType="java.util.HashMap">
|
|
|
+ delete from METER_BASE_USER_PRINT_CONFIG
|
|
|
+ where 1!=1
|
|
|
+ <if test="userId != null and userId != ''">
|
|
|
+ or USER_ID = #{userId}
|
|
|
+ </if>
|
|
|
+ <if test="userName != null and userName != ''">
|
|
|
+ or USER_NAME = #{userName}
|
|
|
+ </if>
|
|
|
+ <if test="matterNo != null and matterNo != ''">
|
|
|
+ or MATTER_NO = #{matterNo}
|
|
|
+ </if>
|
|
|
+ <if test="matterName != null and matterName != ''">
|
|
|
+ or MATTER_NAME = #{matterName}
|
|
|
+ </if>
|
|
|
+ <if test="forwardingUnitNo != null and forwardingUnitNo != ''">
|
|
|
+ or FORWARDING_UNIT_NO = #{forwardingUnitNo}
|
|
|
+ </if>
|
|
|
+ <if test="forwardingUnitName != null and forwardingUnitName != ''">
|
|
|
+ or FORWARDING_UNIT_NAME = #{forwardingUnitName}
|
|
|
+ </if>
|
|
|
+ <if test="receivingUintNo != null and receivingUintNo != ''">
|
|
|
+ or RECEIVING_UINT_NO = #{receivingUintNo}
|
|
|
+ </if>
|
|
|
+ <if test="receivingUintName != null and receivingUintName != ''">
|
|
|
+ or RECEIVING_UINT_NAME = #{receivingUintName}
|
|
|
+ </if>
|
|
|
+ <if test="createManNo != null and createManNo != ''">
|
|
|
+ or CREATE_MAN_NO = #{createManNo}
|
|
|
+ </if>
|
|
|
+ <if test="createManName != null and createManName != ''">
|
|
|
+ or CREATE_MAN_NAME = #{createManName}
|
|
|
+ </if>
|
|
|
+ <if test="createTime != null">
|
|
|
+ or TO_CHAR(CREATE_TIME,'yyyy-MM-dd') = '#{createTime}'
|
|
|
+ </if>
|
|
|
+ <if test="updateManNo != null and updateManNo != ''">
|
|
|
+ or UPDATE_MAN_NO = #{updateManNo}
|
|
|
+ </if>
|
|
|
+ <if test="updateManName != null and updateManName != ''">
|
|
|
+ or UPDATE_MAN_NAME = #{updateManName}
|
|
|
+ </if>
|
|
|
+ <if test="updateTime != null">
|
|
|
+ or TO_CHAR(UPDATE_TIME,'yyyy-MM-dd') = '#{updateTime}'
|
|
|
+ </if>
|
|
|
+ <if test="valueFlag != null and valueFlag != ''">
|
|
|
+ or VALUE_FLAG = #{valueFlag}
|
|
|
+ </if>
|
|
|
+ </delete>
|
|
|
+ <insert id="insert" parameterType="com.steerinfo.baseinfo.meterbaseuserprintconfig.model.MeterBaseUserPrintConfig">
|
|
|
+ insert into METER_BASE_USER_PRINT_CONFIG (PRINT_ID, USER_ID, USER_NAME,
|
|
|
+ MATTER_NO, MATTER_NAME, FORWARDING_UNIT_NO,
|
|
|
+ FORWARDING_UNIT_NAME, RECEIVING_UINT_NO, RECEIVING_UINT_NAME,
|
|
|
+ CREATE_MAN_NO, CREATE_MAN_NAME, CREATE_TIME,
|
|
|
+ UPDATE_MAN_NO, UPDATE_MAN_NAME, UPDATE_TIME,
|
|
|
+ VALUE_FLAG)
|
|
|
+ values (#{printId,jdbcType=VARCHAR}, #{userId,jdbcType=VARCHAR}, #{userName,jdbcType=VARCHAR},
|
|
|
+ #{matterNo,jdbcType=VARCHAR}, #{matterName,jdbcType=VARCHAR}, #{forwardingUnitNo,jdbcType=VARCHAR},
|
|
|
+ #{forwardingUnitName,jdbcType=VARCHAR}, #{receivingUintNo,jdbcType=VARCHAR}, #{receivingUintName,jdbcType=VARCHAR},
|
|
|
+ #{createManNo,jdbcType=VARCHAR}, #{createManName,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP},
|
|
|
+ #{updateManNo,jdbcType=VARCHAR}, #{updateManName,jdbcType=VARCHAR}, #{updateTime,jdbcType=TIMESTAMP},
|
|
|
+ #{valueFlag,jdbcType=VARCHAR})
|
|
|
+ </insert>
|
|
|
+ <insert id="insertSelective" parameterType="com.steerinfo.baseinfo.meterbaseuserprintconfig.model.MeterBaseUserPrintConfig">
|
|
|
+ insert into METER_BASE_USER_PRINT_CONFIG
|
|
|
+ <trim prefix="(" suffix=")" suffixOverrides=",">
|
|
|
+ <if test="printId != null">
|
|
|
+ PRINT_ID,
|
|
|
+ </if>
|
|
|
+ <if test="userId != null">
|
|
|
+ USER_ID,
|
|
|
+ </if>
|
|
|
+ <if test="userName != null">
|
|
|
+ USER_NAME,
|
|
|
+ </if>
|
|
|
+ <if test="matterNo != null">
|
|
|
+ MATTER_NO,
|
|
|
+ </if>
|
|
|
+ <if test="matterName != null">
|
|
|
+ MATTER_NAME,
|
|
|
+ </if>
|
|
|
+ <if test="forwardingUnitNo != null">
|
|
|
+ FORWARDING_UNIT_NO,
|
|
|
+ </if>
|
|
|
+ <if test="forwardingUnitName != null">
|
|
|
+ FORWARDING_UNIT_NAME,
|
|
|
+ </if>
|
|
|
+ <if test="receivingUintNo != null">
|
|
|
+ RECEIVING_UINT_NO,
|
|
|
+ </if>
|
|
|
+ <if test="receivingUintName != null">
|
|
|
+ RECEIVING_UINT_NAME,
|
|
|
+ </if>
|
|
|
+ <if test="createManNo != null">
|
|
|
+ CREATE_MAN_NO,
|
|
|
+ </if>
|
|
|
+ <if test="createManName != null">
|
|
|
+ CREATE_MAN_NAME,
|
|
|
+ </if>
|
|
|
+ <if test="createTime != null">
|
|
|
+ CREATE_TIME,
|
|
|
+ </if>
|
|
|
+ <if test="updateManNo != null">
|
|
|
+ UPDATE_MAN_NO,
|
|
|
+ </if>
|
|
|
+ <if test="updateManName != null">
|
|
|
+ UPDATE_MAN_NAME,
|
|
|
+ </if>
|
|
|
+ <if test="updateTime != null">
|
|
|
+ UPDATE_TIME,
|
|
|
+ </if>
|
|
|
+ <if test="valueFlag != null">
|
|
|
+ VALUE_FLAG,
|
|
|
+ </if>
|
|
|
+ </trim>
|
|
|
+ <trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
+ <if test="printId != null">
|
|
|
+ #{printId,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="userId != null">
|
|
|
+ #{userId,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="userName != null">
|
|
|
+ #{userName,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="matterNo != null">
|
|
|
+ #{matterNo,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="matterName != null">
|
|
|
+ #{matterName,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="forwardingUnitNo != null">
|
|
|
+ #{forwardingUnitNo,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="forwardingUnitName != null">
|
|
|
+ #{forwardingUnitName,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="receivingUintNo != null">
|
|
|
+ #{receivingUintNo,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="receivingUintName != null">
|
|
|
+ #{receivingUintName,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="createManNo != null">
|
|
|
+ #{createManNo,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="createManName != null">
|
|
|
+ #{createManName,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="createTime != null">
|
|
|
+ #{createTime,jdbcType=TIMESTAMP},
|
|
|
+ </if>
|
|
|
+ <if test="updateManNo != null">
|
|
|
+ #{updateManNo,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="updateManName != null">
|
|
|
+ #{updateManName,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="updateTime != null">
|
|
|
+ #{updateTime,jdbcType=TIMESTAMP},
|
|
|
+ </if>
|
|
|
+ <if test="valueFlag != null">
|
|
|
+ #{valueFlag,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ </trim>
|
|
|
+ </insert>
|
|
|
+ <update id="updateByPrimaryKey" parameterType="com.steerinfo.baseinfo.meterbaseuserprintconfig.model.MeterBaseUserPrintConfig">
|
|
|
+ update METER_BASE_USER_PRINT_CONFIG
|
|
|
+ set USER_ID = #{userId,jdbcType=VARCHAR},
|
|
|
+ USER_NAME = #{userName,jdbcType=VARCHAR},
|
|
|
+ MATTER_NO = #{matterNo,jdbcType=VARCHAR},
|
|
|
+ MATTER_NAME = #{matterName,jdbcType=VARCHAR},
|
|
|
+ FORWARDING_UNIT_NO = #{forwardingUnitNo,jdbcType=VARCHAR},
|
|
|
+ FORWARDING_UNIT_NAME = #{forwardingUnitName,jdbcType=VARCHAR},
|
|
|
+ RECEIVING_UINT_NO = #{receivingUintNo,jdbcType=VARCHAR},
|
|
|
+ RECEIVING_UINT_NAME = #{receivingUintName,jdbcType=VARCHAR},
|
|
|
+ CREATE_MAN_NO = #{createManNo,jdbcType=VARCHAR},
|
|
|
+ CREATE_MAN_NAME = #{createManName,jdbcType=VARCHAR},
|
|
|
+ CREATE_TIME = #{createTime,jdbcType=TIMESTAMP},
|
|
|
+ UPDATE_MAN_NO = #{updateManNo,jdbcType=VARCHAR},
|
|
|
+ UPDATE_MAN_NAME = #{updateManName,jdbcType=VARCHAR},
|
|
|
+ UPDATE_TIME = #{updateTime,jdbcType=TIMESTAMP},
|
|
|
+ VALUE_FLAG = #{valueFlag,jdbcType=VARCHAR}
|
|
|
+ where PRINT_ID = #{printId,jdbcType=VARCHAR}
|
|
|
+ </update>
|
|
|
+ <update id="updateByPrimaryKeySelective" parameterType="com.steerinfo.baseinfo.meterbaseuserprintconfig.model.MeterBaseUserPrintConfig">
|
|
|
+ update METER_BASE_USER_PRINT_CONFIG
|
|
|
+ <set>
|
|
|
+ <if test="userId != null">
|
|
|
+ USER_ID = #{userId,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="userName != null">
|
|
|
+ USER_NAME = #{userName,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="matterNo != null">
|
|
|
+ MATTER_NO = #{matterNo,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="matterName != null">
|
|
|
+ MATTER_NAME = #{matterName,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="forwardingUnitNo != null">
|
|
|
+ FORWARDING_UNIT_NO = #{forwardingUnitNo,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="forwardingUnitName != null">
|
|
|
+ FORWARDING_UNIT_NAME = #{forwardingUnitName,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="receivingUintNo != null">
|
|
|
+ RECEIVING_UINT_NO = #{receivingUintNo,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="receivingUintName != null">
|
|
|
+ RECEIVING_UINT_NAME = #{receivingUintName,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="createManNo != null">
|
|
|
+ CREATE_MAN_NO = #{createManNo,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="createManName != null">
|
|
|
+ CREATE_MAN_NAME = #{createManName,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="createTime != null">
|
|
|
+ CREATE_TIME = #{createTime,jdbcType=TIMESTAMP},
|
|
|
+ </if>
|
|
|
+ <if test="updateManNo != null">
|
|
|
+ UPDATE_MAN_NO = #{updateManNo,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="updateManName != null">
|
|
|
+ UPDATE_MAN_NAME = #{updateManName,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="updateTime != null">
|
|
|
+ UPDATE_TIME = #{updateTime,jdbcType=TIMESTAMP},
|
|
|
+ </if>
|
|
|
+ <if test="valueFlag != null">
|
|
|
+ VALUE_FLAG = #{valueFlag,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ </set>
|
|
|
+ where PRINT_ID = #{printId,jdbcType=VARCHAR}
|
|
|
+ </update>
|
|
|
+ <select id="selectByPrimaryKey" parameterType="java.lang.String" resultMap="BaseResultMap">
|
|
|
+ <include refid="select" />
|
|
|
+ where PRINT_ID = #{printId,jdbcType=VARCHAR}
|
|
|
+ </select>
|
|
|
+ <select id="selectByParameters" parameterType="java.util.HashMap" resultMap="BaseResultMap">
|
|
|
+ <include refid="select" />
|
|
|
+ <include refid="where" />
|
|
|
+ </select>
|
|
|
+ <select id="selectLikeByParameters" parameterType="java.util.HashMap" resultMap="BaseResultMap">
|
|
|
+ <include refid="select" />
|
|
|
+ <include refid="whereLike" />
|
|
|
+ </select>
|
|
|
+ <insert id="batchInsert" parameterType="java.util.List">
|
|
|
+ insert into METER_BASE_USER_PRINT_CONFIG
|
|
|
+ (PRINT_ID,
|
|
|
+ USER_ID, USER_NAME, MATTER_NO,
|
|
|
+ MATTER_NAME, FORWARDING_UNIT_NO,
|
|
|
+ FORWARDING_UNIT_NAME, RECEIVING_UINT_NO,
|
|
|
+ RECEIVING_UINT_NAME, CREATE_MAN_NO,
|
|
|
+ CREATE_MAN_NAME, CREATE_TIME,
|
|
|
+ UPDATE_MAN_NO, UPDATE_MAN_NAME, UPDATE_TIME,
|
|
|
+ VALUE_FLAG)
|
|
|
+ ( <foreach collection="list" item="item" separator="union all">
|
|
|
+ select
|
|
|
+ #{item.printId,jdbcType=VARCHAR},
|
|
|
+ #{item.userId,jdbcType=VARCHAR}, #{item.userName,jdbcType=VARCHAR}, #{item.matterNo,jdbcType=VARCHAR},
|
|
|
+ #{item.matterName,jdbcType=VARCHAR}, #{item.forwardingUnitNo,jdbcType=VARCHAR},
|
|
|
+ #{item.forwardingUnitName,jdbcType=VARCHAR}, #{item.receivingUintNo,jdbcType=VARCHAR},
|
|
|
+ #{item.receivingUintName,jdbcType=VARCHAR}, #{item.createManNo,jdbcType=VARCHAR},
|
|
|
+ #{item.createManName,jdbcType=VARCHAR}, #{item.createTime,jdbcType=TIMESTAMP},
|
|
|
+ #{item.updateManNo,jdbcType=VARCHAR}, #{item.updateManName,jdbcType=VARCHAR}, #{item.updateTime,jdbcType=TIMESTAMP},
|
|
|
+ #{item.valueFlag,jdbcType=VARCHAR} from dual
|
|
|
+ </foreach> )
|
|
|
+ </insert>
|
|
|
+ <update id="batchUpdate" parameterType="java.util.List">
|
|
|
+ update METER_BASE_USER_PRINT_CONFIG
|
|
|
+ set
|
|
|
+ PRINT_ID=
|
|
|
+ <foreach close="end" collection="list" index="index" item="item" open="case PRINT_ID" separator=" ">
|
|
|
+ when #{item.printId,jdbcType=VARCHAR} then #{item.printId,jdbcType=VARCHAR}
|
|
|
+ </foreach>
|
|
|
+ ,USER_ID=
|
|
|
+ <foreach close="end" collection="list" index="index" item="item" open="case PRINT_ID" separator=" ">
|
|
|
+ when #{item.printId,jdbcType=VARCHAR} then #{item.userId,jdbcType=VARCHAR}
|
|
|
+ </foreach>
|
|
|
+ ,USER_NAME=
|
|
|
+ <foreach close="end" collection="list" index="index" item="item" open="case PRINT_ID" separator=" ">
|
|
|
+ when #{item.printId,jdbcType=VARCHAR} then #{item.userName,jdbcType=VARCHAR}
|
|
|
+ </foreach>
|
|
|
+ ,MATTER_NO=
|
|
|
+ <foreach close="end" collection="list" index="index" item="item" open="case PRINT_ID" separator=" ">
|
|
|
+ when #{item.printId,jdbcType=VARCHAR} then #{item.matterNo,jdbcType=VARCHAR}
|
|
|
+ </foreach>
|
|
|
+ ,MATTER_NAME=
|
|
|
+ <foreach close="end" collection="list" index="index" item="item" open="case PRINT_ID" separator=" ">
|
|
|
+ when #{item.printId,jdbcType=VARCHAR} then #{item.matterName,jdbcType=VARCHAR}
|
|
|
+ </foreach>
|
|
|
+ ,FORWARDING_UNIT_NO=
|
|
|
+ <foreach close="end" collection="list" index="index" item="item" open="case PRINT_ID" separator=" ">
|
|
|
+ when #{item.printId,jdbcType=VARCHAR} then #{item.forwardingUnitNo,jdbcType=VARCHAR}
|
|
|
+ </foreach>
|
|
|
+ ,FORWARDING_UNIT_NAME=
|
|
|
+ <foreach close="end" collection="list" index="index" item="item" open="case PRINT_ID" separator=" ">
|
|
|
+ when #{item.printId,jdbcType=VARCHAR} then #{item.forwardingUnitName,jdbcType=VARCHAR}
|
|
|
+ </foreach>
|
|
|
+ ,RECEIVING_UINT_NO=
|
|
|
+ <foreach close="end" collection="list" index="index" item="item" open="case PRINT_ID" separator=" ">
|
|
|
+ when #{item.printId,jdbcType=VARCHAR} then #{item.receivingUintNo,jdbcType=VARCHAR}
|
|
|
+ </foreach>
|
|
|
+ ,RECEIVING_UINT_NAME=
|
|
|
+ <foreach close="end" collection="list" index="index" item="item" open="case PRINT_ID" separator=" ">
|
|
|
+ when #{item.printId,jdbcType=VARCHAR} then #{item.receivingUintName,jdbcType=VARCHAR}
|
|
|
+ </foreach>
|
|
|
+ ,CREATE_MAN_NO=
|
|
|
+ <foreach close="end" collection="list" index="index" item="item" open="case PRINT_ID" separator=" ">
|
|
|
+ when #{item.printId,jdbcType=VARCHAR} then #{item.createManNo,jdbcType=VARCHAR}
|
|
|
+ </foreach>
|
|
|
+ ,CREATE_MAN_NAME=
|
|
|
+ <foreach close="end" collection="list" index="index" item="item" open="case PRINT_ID" separator=" ">
|
|
|
+ when #{item.printId,jdbcType=VARCHAR} then #{item.createManName,jdbcType=VARCHAR}
|
|
|
+ </foreach>
|
|
|
+ ,CREATE_TIME=
|
|
|
+ <foreach close="end" collection="list" index="index" item="item" open="case PRINT_ID" separator=" ">
|
|
|
+ when #{item.printId,jdbcType=VARCHAR} then #{item.createTime,jdbcType=TIMESTAMP}
|
|
|
+ </foreach>
|
|
|
+ ,UPDATE_MAN_NO=
|
|
|
+ <foreach close="end" collection="list" index="index" item="item" open="case PRINT_ID" separator=" ">
|
|
|
+ when #{item.printId,jdbcType=VARCHAR} then #{item.updateManNo,jdbcType=VARCHAR}
|
|
|
+ </foreach>
|
|
|
+ ,UPDATE_MAN_NAME=
|
|
|
+ <foreach close="end" collection="list" index="index" item="item" open="case PRINT_ID" separator=" ">
|
|
|
+ when #{item.printId,jdbcType=VARCHAR} then #{item.updateManName,jdbcType=VARCHAR}
|
|
|
+ </foreach>
|
|
|
+ ,UPDATE_TIME=
|
|
|
+ <foreach close="end" collection="list" index="index" item="item" open="case PRINT_ID" separator=" ">
|
|
|
+ when #{item.printId,jdbcType=VARCHAR} then #{item.updateTime,jdbcType=TIMESTAMP}
|
|
|
+ </foreach>
|
|
|
+ ,VALUE_FLAG=
|
|
|
+ <foreach close="end" collection="list" index="index" item="item" open="case PRINT_ID" separator=" ">
|
|
|
+ when #{item.printId,jdbcType=VARCHAR} then #{item.valueFlag,jdbcType=VARCHAR}
|
|
|
+ </foreach>
|
|
|
+ where PRINT_ID in
|
|
|
+ <foreach close=")" collection="list" index="index" item="item" open="(" separator=",">
|
|
|
+ #{item.printId,jdbcType=VARCHAR}
|
|
|
+ </foreach>
|
|
|
+ </update>
|
|
|
+ <delete id="batchDelete" parameterType="java.util.List">
|
|
|
+ delete from METER_BASE_USER_PRINT_CONFIG
|
|
|
+ where PRINT_ID in
|
|
|
+ <foreach close=")" collection="list" item="id" open="(" separator=",">
|
|
|
+ #{id}
|
|
|
+ </foreach>
|
|
|
+ </delete>
|
|
|
+ <!-- 友情提示!!!-->
|
|
|
+ <!-- 请将自己写的代码放在此标签之下,方便以后粘贴复制。-->
|
|
|
+ <select id="likeByDesc" parameterType="java.util.HashMap" resultMap="BaseResultMap">
|
|
|
+ <include refid="select"/>
|
|
|
+ where 1 = 1
|
|
|
+ <if test="userId != null and userId != ''">
|
|
|
+ and USER_ID LIKE '%${userId}%'
|
|
|
+ </if>
|
|
|
+ <if test="userName != null and userName != ''">
|
|
|
+ and USER_NAME LIKE '%${userName}%'
|
|
|
+ </if>
|
|
|
+ <if test="matterNo != null and matterNo != ''">
|
|
|
+ and MATTER_NO LIKE '%${matterNo}%'
|
|
|
+ </if>
|
|
|
+ <if test="matterName != null and matterName != ''">
|
|
|
+ and MATTER_NAME LIKE '%${matterName}%'
|
|
|
+ </if>
|
|
|
+ <if test="forwardingUnitNo != null and forwardingUnitNo != ''">
|
|
|
+ and FORWARDING_UNIT_NO LIKE '%${forwardingUnitNo}%'
|
|
|
+ </if>
|
|
|
+ <if test="forwardingUintName != null and forwardingUintName != ''">
|
|
|
+ and FORWARDING_UINT_NAME LIKE '%${forwardingUintName}%'
|
|
|
+ </if>
|
|
|
+ <if test="receivingUintNo != null and receivingUintNo != ''">
|
|
|
+ and RECEIVING_UINT_NO LIKE '%${receivingUintNo}%'
|
|
|
+ </if>
|
|
|
+ <if test="receivingUintName != null and receivingUintName != ''">
|
|
|
+ and RECEIVING_UINT_NAME LIKE '%${receivingUintName}%'
|
|
|
+ </if>
|
|
|
+ order by user_id desc
|
|
|
+ </select>
|
|
|
+
|
|
|
+</mapper>
|