<?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="pwc.taxtech.atms.dao.PeriodInfoMapper"> <resultMap id="BaseResultMap" type="pwc.taxtech.atms.entity.PeriodInfo"> <!-- WARNING - @mbg.generated This element is automatically generated by MyBatis Generator, do not modify. --> <id column="id" jdbcType="VARCHAR" property="id" /> <result column="project_id" jdbcType="VARCHAR" property="projectId" /> <result column="period" jdbcType="INTEGER" property="period" /> <result column="status" jdbcType="INTEGER" property="status" /> <result column="creator_id" jdbcType="VARCHAR" property="creatorId" /> <result column="create_time" jdbcType="TIMESTAMP" property="createTime" /> <result column="update_time" jdbcType="TIMESTAMP" property="updateTime" /> <result column="project_info" jdbcType="VARCHAR" property="projectInfo" /> <result column="import_type" jdbcType="INTEGER" property="importType" /> <result column="service_type" jdbcType="INTEGER" property="serviceType" /> </resultMap> <sql id="Example_Where_Clause"> <!-- WARNING - @mbg.generated This element is automatically generated by MyBatis Generator, do not modify. --> <where> <foreach collection="oredCriteria" item="criteria" separator="or"> <if test="criteria.valid"> <trim prefix="(" prefixOverrides="and" suffix=")"> <foreach collection="criteria.criteria" item="criterion"> <choose> <when test="criterion.noValue"> and ${criterion.condition} </when> <when test="criterion.singleValue"> and ${criterion.condition} #{criterion.value} </when> <when test="criterion.betweenValue"> and ${criterion.condition} #{criterion.value} and #{criterion.secondValue} </when> <when test="criterion.listValue"> and ${criterion.condition} <foreach close=")" collection="criterion.value" item="listItem" open="(" separator=","> #{listItem} </foreach> </when> </choose> </foreach> </trim> </if> </foreach> </where> </sql> <sql id="Update_By_Example_Where_Clause"> <!-- WARNING - @mbg.generated This element is automatically generated by MyBatis Generator, do not modify. --> <where> <foreach collection="example.oredCriteria" item="criteria" separator="or"> <if test="criteria.valid"> <trim prefix="(" prefixOverrides="and" suffix=")"> <foreach collection="criteria.criteria" item="criterion"> <choose> <when test="criterion.noValue"> and ${criterion.condition} </when> <when test="criterion.singleValue"> and ${criterion.condition} #{criterion.value} </when> <when test="criterion.betweenValue"> and ${criterion.condition} #{criterion.value} and #{criterion.secondValue} </when> <when test="criterion.listValue"> and ${criterion.condition} <foreach close=")" collection="criterion.value" item="listItem" open="(" separator=","> #{listItem} </foreach> </when> </choose> </foreach> </trim> </if> </foreach> </where> </sql> <sql id="Base_Column_List"> <!-- WARNING - @mbg.generated This element is automatically generated by MyBatis Generator, do not modify. --> id, project_id, period, status, creator_id, create_time, update_time, project_info, import_type, service_type </sql> <select id="selectByExample" parameterType="pwc.taxtech.atms.entity.PeriodInfoExample" resultMap="BaseResultMap"> <!-- WARNING - @mbg.generated This element is automatically generated by MyBatis Generator, do not modify. --> select <if test="distinct"> distinct </if> <include refid="Base_Column_List" /> from period_info <if test="_parameter != null"> <include refid="Example_Where_Clause" /> </if> <if test="orderByClause != null"> order by ${orderByClause} </if> </select> <select id="selectByPrimaryKey" parameterType="java.lang.String" resultMap="BaseResultMap"> <!-- WARNING - @mbg.generated This element is automatically generated by MyBatis Generator, do not modify. --> select <include refid="Base_Column_List" /> from period_info where id = #{id,jdbcType=VARCHAR} </select> <delete id="deleteByPrimaryKey" parameterType="java.lang.String"> <!-- WARNING - @mbg.generated This element is automatically generated by MyBatis Generator, do not modify. --> delete from period_info where id = #{id,jdbcType=VARCHAR} </delete> <delete id="deleteByExample" parameterType="pwc.taxtech.atms.entity.PeriodInfoExample"> <!-- WARNING - @mbg.generated This element is automatically generated by MyBatis Generator, do not modify. --> delete from period_info <if test="_parameter != null"> <include refid="Example_Where_Clause" /> </if> </delete> <insert id="insert" parameterType="pwc.taxtech.atms.entity.PeriodInfo"> <!-- WARNING - @mbg.generated This element is automatically generated by MyBatis Generator, do not modify. --> insert into period_info (id, project_id, period, status, creator_id, create_time, update_time, project_info, import_type, service_type) values (#{id,jdbcType=VARCHAR}, #{projectId,jdbcType=VARCHAR}, #{period,jdbcType=INTEGER}, #{status,jdbcType=INTEGER}, #{creatorId,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP}, #{updateTime,jdbcType=TIMESTAMP}, #{projectInfo,jdbcType=VARCHAR}, #{importType,jdbcType=INTEGER}, #{serviceType,jdbcType=INTEGER}) </insert> <insert id="insertSelective" parameterType="pwc.taxtech.atms.entity.PeriodInfo"> <!-- WARNING - @mbg.generated This element is automatically generated by MyBatis Generator, do not modify. --> insert into period_info <trim prefix="(" suffix=")" suffixOverrides=","> <if test="id != null"> id, </if> <if test="projectId != null"> project_id, </if> <if test="period != null"> period, </if> <if test="status != null"> status, </if> <if test="creatorId != null"> creator_id, </if> <if test="createTime != null"> create_time, </if> <if test="updateTime != null"> update_time, </if> <if test="projectInfo != null"> project_info, </if> <if test="importType != null"> import_type, </if> <if test="serviceType != null"> service_type, </if> </trim> <trim prefix="values (" suffix=")" suffixOverrides=","> <if test="id != null"> #{id,jdbcType=VARCHAR}, </if> <if test="projectId != null"> #{projectId,jdbcType=VARCHAR}, </if> <if test="period != null"> #{period,jdbcType=INTEGER}, </if> <if test="status != null"> #{status,jdbcType=INTEGER}, </if> <if test="creatorId != null"> #{creatorId,jdbcType=VARCHAR}, </if> <if test="createTime != null"> #{createTime,jdbcType=TIMESTAMP}, </if> <if test="updateTime != null"> #{updateTime,jdbcType=TIMESTAMP}, </if> <if test="projectInfo != null"> #{projectInfo,jdbcType=VARCHAR}, </if> <if test="importType != null"> #{importType,jdbcType=INTEGER}, </if> <if test="serviceType != null"> #{serviceType,jdbcType=INTEGER}, </if> </trim> </insert> <select id="countByExample" parameterType="pwc.taxtech.atms.entity.PeriodInfoExample" resultType="java.lang.Long"> <!-- WARNING - @mbg.generated This element is automatically generated by MyBatis Generator, do not modify. --> select count(*) from period_info <if test="_parameter != null"> <include refid="Example_Where_Clause" /> </if> </select> <update id="updateByExampleSelective" parameterType="map"> <!-- WARNING - @mbg.generated This element is automatically generated by MyBatis Generator, do not modify. --> update period_info <set> <if test="record.id != null"> id = #{record.id,jdbcType=VARCHAR}, </if> <if test="record.projectId != null"> project_id = #{record.projectId,jdbcType=VARCHAR}, </if> <if test="record.period != null"> period = #{record.period,jdbcType=INTEGER}, </if> <if test="record.status != null"> status = #{record.status,jdbcType=INTEGER}, </if> <if test="record.creatorId != null"> creator_id = #{record.creatorId,jdbcType=VARCHAR}, </if> <if test="record.createTime != null"> create_time = #{record.createTime,jdbcType=TIMESTAMP}, </if> <if test="record.updateTime != null"> update_time = #{record.updateTime,jdbcType=TIMESTAMP}, </if> <if test="record.projectInfo != null"> project_info = #{record.projectInfo,jdbcType=VARCHAR}, </if> <if test="record.importType != null"> import_type = #{record.importType,jdbcType=INTEGER}, </if> <if test="record.serviceType != null"> service_type = #{record.serviceType,jdbcType=INTEGER}, </if> </set> <if test="_parameter != null"> <include refid="Update_By_Example_Where_Clause" /> </if> </update> <update id="updateByExample" parameterType="map"> <!-- WARNING - @mbg.generated This element is automatically generated by MyBatis Generator, do not modify. --> update period_info set id = #{record.id,jdbcType=VARCHAR}, project_id = #{record.projectId,jdbcType=VARCHAR}, period = #{record.period,jdbcType=INTEGER}, status = #{record.status,jdbcType=INTEGER}, creator_id = #{record.creatorId,jdbcType=VARCHAR}, create_time = #{record.createTime,jdbcType=TIMESTAMP}, update_time = #{record.updateTime,jdbcType=TIMESTAMP}, project_info = #{record.projectInfo,jdbcType=VARCHAR}, import_type = #{record.importType,jdbcType=INTEGER}, service_type = #{record.serviceType,jdbcType=INTEGER} <if test="_parameter != null"> <include refid="Update_By_Example_Where_Clause" /> </if> </update> <update id="updateByPrimaryKeySelective" parameterType="pwc.taxtech.atms.entity.PeriodInfo"> <!-- WARNING - @mbg.generated This element is automatically generated by MyBatis Generator, do not modify. --> update period_info <set> <if test="projectId != null"> project_id = #{projectId,jdbcType=VARCHAR}, </if> <if test="period != null"> period = #{period,jdbcType=INTEGER}, </if> <if test="status != null"> status = #{status,jdbcType=INTEGER}, </if> <if test="creatorId != null"> creator_id = #{creatorId,jdbcType=VARCHAR}, </if> <if test="createTime != null"> create_time = #{createTime,jdbcType=TIMESTAMP}, </if> <if test="updateTime != null"> update_time = #{updateTime,jdbcType=TIMESTAMP}, </if> <if test="projectInfo != null"> project_info = #{projectInfo,jdbcType=VARCHAR}, </if> <if test="importType != null"> import_type = #{importType,jdbcType=INTEGER}, </if> <if test="serviceType != null"> service_type = #{serviceType,jdbcType=INTEGER}, </if> </set> where id = #{id,jdbcType=VARCHAR} </update> <update id="updateByPrimaryKey" parameterType="pwc.taxtech.atms.entity.PeriodInfo"> <!-- WARNING - @mbg.generated This element is automatically generated by MyBatis Generator, do not modify. --> update period_info set project_id = #{projectId,jdbcType=VARCHAR}, period = #{period,jdbcType=INTEGER}, status = #{status,jdbcType=INTEGER}, creator_id = #{creatorId,jdbcType=VARCHAR}, create_time = #{createTime,jdbcType=TIMESTAMP}, update_time = #{updateTime,jdbcType=TIMESTAMP}, project_info = #{projectInfo,jdbcType=VARCHAR}, import_type = #{importType,jdbcType=INTEGER}, service_type = #{serviceType,jdbcType=INTEGER} where id = #{id,jdbcType=VARCHAR} </update> <select id="selectByExampleWithRowbounds" parameterType="pwc.taxtech.atms.entity.PeriodInfoExample" resultMap="BaseResultMap"> <!-- WARNING - @mbg.generated This element is automatically generated by MyBatis Generator, do not modify. --> select <if test="distinct"> distinct </if> <include refid="Base_Column_List" /> from period_info <if test="_parameter != null"> <include refid="Example_Where_Clause" /> </if> <if test="orderByClause != null"> order by ${orderByClause} </if> </select> </mapper>