forked from github/dataease
243 lines
9.0 KiB
XML
243 lines
9.0 KiB
XML
<?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="io.dataease.base.mapper.AreaMappingMapper">
|
|
<resultMap id="BaseResultMap" type="io.dataease.base.domain.AreaMapping">
|
|
<id column="id" jdbcType="BIGINT" property="id" />
|
|
<result column="province_name" jdbcType="VARCHAR" property="provinceName" />
|
|
<result column="province_code" jdbcType="VARCHAR" property="provinceCode" />
|
|
<result column="city_name" jdbcType="VARCHAR" property="cityName" />
|
|
<result column="city_code" jdbcType="VARCHAR" property="cityCode" />
|
|
<result column="county_name" jdbcType="VARCHAR" property="countyName" />
|
|
<result column="county_code" jdbcType="VARCHAR" property="countyCode" />
|
|
</resultMap>
|
|
<sql id="Example_Where_Clause">
|
|
<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">
|
|
<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">
|
|
id, province_name, province_code, city_name, city_code, county_name, county_code
|
|
</sql>
|
|
<select id="selectByExample" parameterType="io.dataease.base.domain.AreaMappingExample" resultMap="BaseResultMap">
|
|
select
|
|
<if test="distinct">
|
|
distinct
|
|
</if>
|
|
<include refid="Base_Column_List" />
|
|
from area_mapping
|
|
<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">
|
|
select
|
|
<include refid="Base_Column_List" />
|
|
from area_mapping
|
|
where id = #{id,jdbcType=BIGINT}
|
|
</select>
|
|
<delete id="deleteByPrimaryKey" parameterType="java.lang.Long">
|
|
delete from area_mapping
|
|
where id = #{id,jdbcType=BIGINT}
|
|
</delete>
|
|
<delete id="deleteByExample" parameterType="io.dataease.base.domain.AreaMappingExample">
|
|
delete from area_mapping
|
|
<if test="_parameter != null">
|
|
<include refid="Example_Where_Clause" />
|
|
</if>
|
|
</delete>
|
|
<insert id="insert" parameterType="io.dataease.base.domain.AreaMapping">
|
|
insert into area_mapping (id, province_name, province_code,
|
|
city_name, city_code, county_name,
|
|
county_code)
|
|
values (#{id,jdbcType=BIGINT}, #{provinceName,jdbcType=VARCHAR}, #{provinceCode,jdbcType=VARCHAR},
|
|
#{cityName,jdbcType=VARCHAR}, #{cityCode,jdbcType=VARCHAR}, #{countyName,jdbcType=VARCHAR},
|
|
#{countyCode,jdbcType=VARCHAR})
|
|
</insert>
|
|
<insert id="insertSelective" parameterType="io.dataease.base.domain.AreaMapping">
|
|
insert into area_mapping
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
<if test="id != null">
|
|
id,
|
|
</if>
|
|
<if test="provinceName != null">
|
|
province_name,
|
|
</if>
|
|
<if test="provinceCode != null">
|
|
province_code,
|
|
</if>
|
|
<if test="cityName != null">
|
|
city_name,
|
|
</if>
|
|
<if test="cityCode != null">
|
|
city_code,
|
|
</if>
|
|
<if test="countyName != null">
|
|
county_name,
|
|
</if>
|
|
<if test="countyCode != null">
|
|
county_code,
|
|
</if>
|
|
</trim>
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
<if test="id != null">
|
|
#{id,jdbcType=BIGINT},
|
|
</if>
|
|
<if test="provinceName != null">
|
|
#{provinceName,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="provinceCode != null">
|
|
#{provinceCode,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="cityName != null">
|
|
#{cityName,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="cityCode != null">
|
|
#{cityCode,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="countyName != null">
|
|
#{countyName,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="countyCode != null">
|
|
#{countyCode,jdbcType=VARCHAR},
|
|
</if>
|
|
</trim>
|
|
</insert>
|
|
<select id="countByExample" parameterType="io.dataease.base.domain.AreaMappingExample" resultType="java.lang.Long">
|
|
select count(*) from area_mapping
|
|
<if test="_parameter != null">
|
|
<include refid="Example_Where_Clause" />
|
|
</if>
|
|
</select>
|
|
<update id="updateByExampleSelective" parameterType="map">
|
|
update area_mapping
|
|
<set>
|
|
<if test="record.id != null">
|
|
id = #{record.id,jdbcType=BIGINT},
|
|
</if>
|
|
<if test="record.provinceName != null">
|
|
province_name = #{record.provinceName,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="record.provinceCode != null">
|
|
province_code = #{record.provinceCode,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="record.cityName != null">
|
|
city_name = #{record.cityName,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="record.cityCode != null">
|
|
city_code = #{record.cityCode,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="record.countyName != null">
|
|
county_name = #{record.countyName,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="record.countyCode != null">
|
|
county_code = #{record.countyCode,jdbcType=VARCHAR},
|
|
</if>
|
|
</set>
|
|
<if test="_parameter != null">
|
|
<include refid="Update_By_Example_Where_Clause" />
|
|
</if>
|
|
</update>
|
|
<update id="updateByExample" parameterType="map">
|
|
update area_mapping
|
|
set id = #{record.id,jdbcType=BIGINT},
|
|
province_name = #{record.provinceName,jdbcType=VARCHAR},
|
|
province_code = #{record.provinceCode,jdbcType=VARCHAR},
|
|
city_name = #{record.cityName,jdbcType=VARCHAR},
|
|
city_code = #{record.cityCode,jdbcType=VARCHAR},
|
|
county_name = #{record.countyName,jdbcType=VARCHAR},
|
|
county_code = #{record.countyCode,jdbcType=VARCHAR}
|
|
<if test="_parameter != null">
|
|
<include refid="Update_By_Example_Where_Clause" />
|
|
</if>
|
|
</update>
|
|
<update id="updateByPrimaryKeySelective" parameterType="io.dataease.base.domain.AreaMapping">
|
|
update area_mapping
|
|
<set>
|
|
<if test="provinceName != null">
|
|
province_name = #{provinceName,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="provinceCode != null">
|
|
province_code = #{provinceCode,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="cityName != null">
|
|
city_name = #{cityName,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="cityCode != null">
|
|
city_code = #{cityCode,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="countyName != null">
|
|
county_name = #{countyName,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="countyCode != null">
|
|
county_code = #{countyCode,jdbcType=VARCHAR},
|
|
</if>
|
|
</set>
|
|
where id = #{id,jdbcType=BIGINT}
|
|
</update>
|
|
<update id="updateByPrimaryKey" parameterType="io.dataease.base.domain.AreaMapping">
|
|
update area_mapping
|
|
set province_name = #{provinceName,jdbcType=VARCHAR},
|
|
province_code = #{provinceCode,jdbcType=VARCHAR},
|
|
city_name = #{cityName,jdbcType=VARCHAR},
|
|
city_code = #{cityCode,jdbcType=VARCHAR},
|
|
county_name = #{countyName,jdbcType=VARCHAR},
|
|
county_code = #{countyCode,jdbcType=VARCHAR}
|
|
where id = #{id,jdbcType=BIGINT}
|
|
</update>
|
|
</mapper> |