<?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.vat.dao.PeriodTemplateMapper"> <resultMap id="BaseResultMap" type="pwc.taxtech.atms.vat.entity.PeriodTemplate"> <!-- WARNING - @mbg.generated This element is automatically generated by MyBatis Generator, do not modify. --> <id column="id" jdbcType="BIGINT" property="id" /> <result column="period" jdbcType="INTEGER" property="period" /> <result column="name" jdbcType="VARCHAR" property="name" /> <result column="code" jdbcType="VARCHAR" property="code" /> <result column="path" jdbcType="VARCHAR" property="path" /> <result column="report_type" jdbcType="INTEGER" property="reportType" /> <result column="template_group_id" jdbcType="BIGINT" property="templateGroupId" /> <result column="order_index" jdbcType="INTEGER" property="orderIndex" /> <result column="create_time" jdbcType="TIMESTAMP" property="createTime" /> <result column="update_time" jdbcType="TIMESTAMP" property="updateTime" /> <result column="is_system_type" jdbcType="INTEGER" property="isSystemType" /> <result column="is_active_association" jdbcType="INTEGER" property="isActiveAssociation" /> <result column="parent_id" jdbcType="VARCHAR" property="parentId" /> <result column="template_id" jdbcType="BIGINT" property="templateId" /> <result column="create_by" jdbcType="VARCHAR" property="createBy" /> <result column="update_by" jdbcType="VARCHAR" property="updateBy" /> </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, period, `name`, code, `path`, report_type, template_group_id, order_index, create_time, update_time, is_system_type, is_active_association, parent_id, template_id, create_by, update_by </sql> <select id="selectByExample" parameterType="pwc.taxtech.atms.vat.entity.PeriodTemplateExample" 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_template <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.Long" resultMap="BaseResultMap"> <!-- WARNING - @mbg.generated This element is automatically generated by MyBatis Generator, do not modify. --> select <include refid="Base_Column_List" /> from period_template where id = #{id,jdbcType=BIGINT} </select> <delete id="deleteByPrimaryKey" parameterType="java.lang.Long"> <!-- WARNING - @mbg.generated This element is automatically generated by MyBatis Generator, do not modify. --> delete from period_template where id = #{id,jdbcType=BIGINT} </delete> <delete id="deleteByExample" parameterType="pwc.taxtech.atms.vat.entity.PeriodTemplateExample"> <!-- WARNING - @mbg.generated This element is automatically generated by MyBatis Generator, do not modify. --> delete from period_template <if test="_parameter != null"> <include refid="Example_Where_Clause" /> </if> </delete> <insert id="insert" parameterType="pwc.taxtech.atms.vat.entity.PeriodTemplate"> <!-- WARNING - @mbg.generated This element is automatically generated by MyBatis Generator, do not modify. --> insert into period_template (id, period, `name`, code, `path`, report_type, template_group_id, order_index, create_time, update_time, is_system_type, is_active_association, parent_id, template_id, create_by, update_by) values (#{id,jdbcType=BIGINT}, #{period,jdbcType=INTEGER}, #{name,jdbcType=VARCHAR}, #{code,jdbcType=VARCHAR}, #{path,jdbcType=VARCHAR}, #{reportType,jdbcType=INTEGER}, #{templateGroupId,jdbcType=BIGINT}, #{orderIndex,jdbcType=INTEGER}, #{createTime,jdbcType=TIMESTAMP}, #{updateTime,jdbcType=TIMESTAMP}, #{isSystemType,jdbcType=INTEGER}, #{isActiveAssociation,jdbcType=INTEGER}, #{parentId,jdbcType=VARCHAR}, #{templateId,jdbcType=BIGINT}, #{createBy,jdbcType=VARCHAR}, #{updateBy,jdbcType=VARCHAR}) </insert> <insert id="insertSelective" parameterType="pwc.taxtech.atms.vat.entity.PeriodTemplate"> <!-- WARNING - @mbg.generated This element is automatically generated by MyBatis Generator, do not modify. --> insert into period_template <trim prefix="(" suffix=")" suffixOverrides=","> <if test="id != null"> id, </if> <if test="period != null"> period, </if> <if test="name != null"> `name`, </if> <if test="code != null"> code, </if> <if test="path != null"> `path`, </if> <if test="reportType != null"> report_type, </if> <if test="templateGroupId != null"> template_group_id, </if> <if test="orderIndex != null"> order_index, </if> <if test="createTime != null"> create_time, </if> <if test="updateTime != null"> update_time, </if> <if test="isSystemType != null"> is_system_type, </if> <if test="isActiveAssociation != null"> is_active_association, </if> <if test="parentId != null"> parent_id, </if> <if test="templateId != null"> template_id, </if> <if test="createBy != null"> create_by, </if> <if test="updateBy != null"> update_by, </if> </trim> <trim prefix="values (" suffix=")" suffixOverrides=","> <if test="id != null"> #{id,jdbcType=BIGINT}, </if> <if test="period != null"> #{period,jdbcType=INTEGER}, </if> <if test="name != null"> #{name,jdbcType=VARCHAR}, </if> <if test="code != null"> #{code,jdbcType=VARCHAR}, </if> <if test="path != null"> #{path,jdbcType=VARCHAR}, </if> <if test="reportType != null"> #{reportType,jdbcType=INTEGER}, </if> <if test="templateGroupId != null"> #{templateGroupId,jdbcType=BIGINT}, </if> <if test="orderIndex != null"> #{orderIndex,jdbcType=INTEGER}, </if> <if test="createTime != null"> #{createTime,jdbcType=TIMESTAMP}, </if> <if test="updateTime != null"> #{updateTime,jdbcType=TIMESTAMP}, </if> <if test="isSystemType != null"> #{isSystemType,jdbcType=INTEGER}, </if> <if test="isActiveAssociation != null"> #{isActiveAssociation,jdbcType=INTEGER}, </if> <if test="parentId != null"> #{parentId,jdbcType=VARCHAR}, </if> <if test="templateId != null"> #{templateId,jdbcType=BIGINT}, </if> <if test="createBy != null"> #{createBy,jdbcType=VARCHAR}, </if> <if test="updateBy != null"> #{updateBy,jdbcType=VARCHAR}, </if> </trim> </insert> <select id="countByExample" parameterType="pwc.taxtech.atms.vat.entity.PeriodTemplateExample" resultType="java.lang.Long"> <!-- WARNING - @mbg.generated This element is automatically generated by MyBatis Generator, do not modify. --> select count(*) from period_template <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_template <set> <if test="record.id != null"> id = #{record.id,jdbcType=BIGINT}, </if> <if test="record.period != null"> period = #{record.period,jdbcType=INTEGER}, </if> <if test="record.name != null"> `name` = #{record.name,jdbcType=VARCHAR}, </if> <if test="record.code != null"> code = #{record.code,jdbcType=VARCHAR}, </if> <if test="record.path != null"> `path` = #{record.path,jdbcType=VARCHAR}, </if> <if test="record.reportType != null"> report_type = #{record.reportType,jdbcType=INTEGER}, </if> <if test="record.templateGroupId != null"> template_group_id = #{record.templateGroupId,jdbcType=BIGINT}, </if> <if test="record.orderIndex != null"> order_index = #{record.orderIndex,jdbcType=INTEGER}, </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.isSystemType != null"> is_system_type = #{record.isSystemType,jdbcType=INTEGER}, </if> <if test="record.isActiveAssociation != null"> is_active_association = #{record.isActiveAssociation,jdbcType=INTEGER}, </if> <if test="record.parentId != null"> parent_id = #{record.parentId,jdbcType=VARCHAR}, </if> <if test="record.templateId != null"> template_id = #{record.templateId,jdbcType=BIGINT}, </if> <if test="record.createBy != null"> create_by = #{record.createBy,jdbcType=VARCHAR}, </if> <if test="record.updateBy != null"> update_by = #{record.updateBy,jdbcType=VARCHAR}, </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_template set id = #{record.id,jdbcType=BIGINT}, period = #{record.period,jdbcType=INTEGER}, `name` = #{record.name,jdbcType=VARCHAR}, code = #{record.code,jdbcType=VARCHAR}, `path` = #{record.path,jdbcType=VARCHAR}, report_type = #{record.reportType,jdbcType=INTEGER}, template_group_id = #{record.templateGroupId,jdbcType=BIGINT}, order_index = #{record.orderIndex,jdbcType=INTEGER}, create_time = #{record.createTime,jdbcType=TIMESTAMP}, update_time = #{record.updateTime,jdbcType=TIMESTAMP}, is_system_type = #{record.isSystemType,jdbcType=INTEGER}, is_active_association = #{record.isActiveAssociation,jdbcType=INTEGER}, parent_id = #{record.parentId,jdbcType=VARCHAR}, template_id = #{record.templateId,jdbcType=BIGINT}, create_by = #{record.createBy,jdbcType=VARCHAR}, update_by = #{record.updateBy,jdbcType=VARCHAR} <if test="_parameter != null"> <include refid="Update_By_Example_Where_Clause" /> </if> </update> <update id="updateByPrimaryKeySelective" parameterType="pwc.taxtech.atms.vat.entity.PeriodTemplate"> <!-- WARNING - @mbg.generated This element is automatically generated by MyBatis Generator, do not modify. --> update period_template <set> <if test="period != null"> period = #{period,jdbcType=INTEGER}, </if> <if test="name != null"> `name` = #{name,jdbcType=VARCHAR}, </if> <if test="code != null"> code = #{code,jdbcType=VARCHAR}, </if> <if test="path != null"> `path` = #{path,jdbcType=VARCHAR}, </if> <if test="reportType != null"> report_type = #{reportType,jdbcType=INTEGER}, </if> <if test="templateGroupId != null"> template_group_id = #{templateGroupId,jdbcType=BIGINT}, </if> <if test="orderIndex != null"> order_index = #{orderIndex,jdbcType=INTEGER}, </if> <if test="createTime != null"> create_time = #{createTime,jdbcType=TIMESTAMP}, </if> <if test="updateTime != null"> update_time = #{updateTime,jdbcType=TIMESTAMP}, </if> <if test="isSystemType != null"> is_system_type = #{isSystemType,jdbcType=INTEGER}, </if> <if test="isActiveAssociation != null"> is_active_association = #{isActiveAssociation,jdbcType=INTEGER}, </if> <if test="parentId != null"> parent_id = #{parentId,jdbcType=VARCHAR}, </if> <if test="templateId != null"> template_id = #{templateId,jdbcType=BIGINT}, </if> <if test="createBy != null"> create_by = #{createBy,jdbcType=VARCHAR}, </if> <if test="updateBy != null"> update_by = #{updateBy,jdbcType=VARCHAR}, </if> </set> where id = #{id,jdbcType=BIGINT} </update> <update id="updateByPrimaryKey" parameterType="pwc.taxtech.atms.vat.entity.PeriodTemplate"> <!-- WARNING - @mbg.generated This element is automatically generated by MyBatis Generator, do not modify. --> update period_template set period = #{period,jdbcType=INTEGER}, `name` = #{name,jdbcType=VARCHAR}, code = #{code,jdbcType=VARCHAR}, `path` = #{path,jdbcType=VARCHAR}, report_type = #{reportType,jdbcType=INTEGER}, template_group_id = #{templateGroupId,jdbcType=BIGINT}, order_index = #{orderIndex,jdbcType=INTEGER}, create_time = #{createTime,jdbcType=TIMESTAMP}, update_time = #{updateTime,jdbcType=TIMESTAMP}, is_system_type = #{isSystemType,jdbcType=INTEGER}, is_active_association = #{isActiveAssociation,jdbcType=INTEGER}, parent_id = #{parentId,jdbcType=VARCHAR}, template_id = #{templateId,jdbcType=BIGINT}, create_by = #{createBy,jdbcType=VARCHAR}, update_by = #{updateBy,jdbcType=VARCHAR} where id = #{id,jdbcType=BIGINT} </update> <select id="selectByExampleWithRowbounds" parameterType="pwc.taxtech.atms.vat.entity.PeriodTemplateExample" 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_template <if test="_parameter != null"> <include refid="Example_Where_Clause" /> </if> <if test="orderByClause != null"> order by ${orderByClause} </if> </select> <insert id="batchInsert"> INSERT INTO period_template (id, period, `name`, `code`, path, report_type, template_group_id, order_index, create_time, update_time, is_system_type, is_active_association, parent_id, template_id, create_by, update_by ) VALUES <foreach collection="list" item="item" separator=","> (#{item.id,jdbcType=INTEGER} ,#{item.period,jdbcType=INTEGER} ,#{item.name,jdbcType=VARCHAR} ,#{item.code,jdbcType=VARCHAR} ,#{item.path,jdbcType=VARCHAR} ,#{item.reportType,jdbcType=INTEGER} ,#{item.templateGroupId,jdbcType=INTEGER} ,#{item.orderIndex,jdbcType=INTEGER} ,#{item.createTime,jdbcType=TIMESTAMP} ,#{item.updateTime,jdbcType=TIMESTAMP} ,#{item.isSystemType,jdbcType=INTEGER} ,#{item.isActiveAssociation,jdbcType=INTEGER} ,#{item.parentId,jdbcType=VARCHAR} ,#{item.templateId,jdbcType=INTEGER} ,#{item.createBy,jdbcType=VARCHAR} ,#{item.updateBy,jdbcType=VARCHAR} ) </foreach> </insert> <resultMap id="cellTemplatePerGroupDto" type="pwc.taxtech.atms.dto.vatdto.CellTemplatePerGroupDto"> </resultMap> <select id="getCellTemplatePerGroup" resultMap="cellTemplatePerGroupDto"> SELECT celltemplate.id AS cellTemplateID, template.id AS reportTemplateID, template.template_group_id AS reportTemplateGroupID, IFNULL(celltemplateconfig.formula,'') AS formula, celltemplate.row_index AS rowIndex, celltemplate.column_index AS columnIndex, template.code AS reportCode, celltemplate.column_name AS columnName, celltemplate.row_name AS rowName, celltemplate.data_type AS resultType FROM period_template template JOIN period_cell_template celltemplate ON template.id = celltemplate.report_template_id LEFT JOIN period_cell_template_config celltemplateconfig ON celltemplateconfig.cell_template_id = celltemplate.id WHERE template.period=#{period,jdbcType=INTEGER} AND celltemplate.period=#{period,jdbcType=INTEGER} AND celltemplateconfig.period==#{period,jdbcType=INTEGER} AND celltemplateconfig.data_source_type=1 AND template.template_group_id=#{reportTemplateGroupID,jdbcType=VARCHAR} AND template.is_active_association=1 </select> </mapper>