445 lines
16 KiB
XML
445 lines
16 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="com.jsh.erp.datasource.mappers.OrganizationMapper">
|
|
<resultMap id="BaseResultMap" type="com.jsh.erp.datasource.entities.Organization">
|
|
<!--
|
|
WARNING - @mbggenerated
|
|
This element is automatically generated by MyBatis Generator, do not modify.
|
|
-->
|
|
<id column="id" jdbcType="BIGINT" property="id" />
|
|
<result column="org_no" jdbcType="VARCHAR" property="orgNo" />
|
|
<result column="org_full_name" jdbcType="VARCHAR" property="orgFullName" />
|
|
<result column="org_abr" jdbcType="VARCHAR" property="orgAbr" />
|
|
<result column="org_tpcd" jdbcType="VARCHAR" property="orgTpcd" />
|
|
<result column="org_stcd" jdbcType="CHAR" property="orgStcd" />
|
|
<result column="org_parent_no" jdbcType="VARCHAR" property="orgParentNo" />
|
|
<result column="sort" jdbcType="VARCHAR" property="sort" />
|
|
<result column="remark" jdbcType="VARCHAR" property="remark" />
|
|
<result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
|
|
<result column="creator" jdbcType="BIGINT" property="creator" />
|
|
<result column="update_time" jdbcType="TIMESTAMP" property="updateTime" />
|
|
<result column="updater" jdbcType="BIGINT" property="updater" />
|
|
<result column="org_create_time" jdbcType="TIMESTAMP" property="orgCreateTime" />
|
|
<result column="org_stop_time" jdbcType="TIMESTAMP" property="orgStopTime" />
|
|
<result column="tenant_id" jdbcType="BIGINT" property="tenantId" />
|
|
</resultMap>
|
|
<sql id="Example_Where_Clause">
|
|
<!--
|
|
WARNING - @mbggenerated
|
|
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 - @mbggenerated
|
|
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 - @mbggenerated
|
|
This element is automatically generated by MyBatis Generator, do not modify.
|
|
-->
|
|
id, org_no, org_full_name, org_abr, org_tpcd, org_stcd, org_parent_no, sort, remark,
|
|
create_time, creator, update_time, updater, org_create_time, org_stop_time, tenant_id
|
|
</sql>
|
|
<select id="selectByExample" parameterType="com.jsh.erp.datasource.entities.OrganizationExample" resultMap="BaseResultMap">
|
|
<!--
|
|
WARNING - @mbggenerated
|
|
This element is automatically generated by MyBatis Generator, do not modify.
|
|
-->
|
|
select
|
|
<if test="distinct">
|
|
distinct
|
|
</if>
|
|
<include refid="Base_Column_List" />
|
|
from jsh_organization
|
|
<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 - @mbggenerated
|
|
This element is automatically generated by MyBatis Generator, do not modify.
|
|
-->
|
|
select
|
|
<include refid="Base_Column_List" />
|
|
from jsh_organization
|
|
where id = #{id,jdbcType=BIGINT}
|
|
</select>
|
|
<delete id="deleteByPrimaryKey" parameterType="java.lang.Long">
|
|
<!--
|
|
WARNING - @mbggenerated
|
|
This element is automatically generated by MyBatis Generator, do not modify.
|
|
-->
|
|
delete from jsh_organization
|
|
where id = #{id,jdbcType=BIGINT}
|
|
</delete>
|
|
<delete id="deleteByExample" parameterType="com.jsh.erp.datasource.entities.OrganizationExample">
|
|
<!--
|
|
WARNING - @mbggenerated
|
|
This element is automatically generated by MyBatis Generator, do not modify.
|
|
-->
|
|
delete from jsh_organization
|
|
<if test="_parameter != null">
|
|
<include refid="Example_Where_Clause" />
|
|
</if>
|
|
</delete>
|
|
<insert id="insert" parameterType="com.jsh.erp.datasource.entities.Organization">
|
|
<!--
|
|
WARNING - @mbggenerated
|
|
This element is automatically generated by MyBatis Generator, do not modify.
|
|
-->
|
|
insert into jsh_organization (id, org_no, org_full_name,
|
|
org_abr, org_tpcd, org_stcd,
|
|
org_parent_no, sort, remark,
|
|
create_time, creator, update_time,
|
|
updater, org_create_time, org_stop_time,
|
|
tenant_id)
|
|
values (#{id,jdbcType=BIGINT}, #{orgNo,jdbcType=VARCHAR}, #{orgFullName,jdbcType=VARCHAR},
|
|
#{orgAbr,jdbcType=VARCHAR}, #{orgTpcd,jdbcType=VARCHAR}, #{orgStcd,jdbcType=CHAR},
|
|
#{orgParentNo,jdbcType=VARCHAR}, #{sort,jdbcType=VARCHAR}, #{remark,jdbcType=VARCHAR},
|
|
#{createTime,jdbcType=TIMESTAMP}, #{creator,jdbcType=BIGINT}, #{updateTime,jdbcType=TIMESTAMP},
|
|
#{updater,jdbcType=BIGINT}, #{orgCreateTime,jdbcType=TIMESTAMP}, #{orgStopTime,jdbcType=TIMESTAMP},
|
|
#{tenantId,jdbcType=BIGINT})
|
|
</insert>
|
|
<insert id="insertSelective" parameterType="com.jsh.erp.datasource.entities.Organization">
|
|
<!--
|
|
WARNING - @mbggenerated
|
|
This element is automatically generated by MyBatis Generator, do not modify.
|
|
-->
|
|
insert into jsh_organization
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
<if test="id != null">
|
|
id,
|
|
</if>
|
|
<if test="orgNo != null">
|
|
org_no,
|
|
</if>
|
|
<if test="orgFullName != null">
|
|
org_full_name,
|
|
</if>
|
|
<if test="orgAbr != null">
|
|
org_abr,
|
|
</if>
|
|
<if test="orgTpcd != null">
|
|
org_tpcd,
|
|
</if>
|
|
<if test="orgStcd != null">
|
|
org_stcd,
|
|
</if>
|
|
<if test="orgParentNo != null">
|
|
org_parent_no,
|
|
</if>
|
|
<if test="sort != null">
|
|
sort,
|
|
</if>
|
|
<if test="remark != null">
|
|
remark,
|
|
</if>
|
|
<if test="createTime != null">
|
|
create_time,
|
|
</if>
|
|
<if test="creator != null">
|
|
creator,
|
|
</if>
|
|
<if test="updateTime != null">
|
|
update_time,
|
|
</if>
|
|
<if test="updater != null">
|
|
updater,
|
|
</if>
|
|
<if test="orgCreateTime != null">
|
|
org_create_time,
|
|
</if>
|
|
<if test="orgStopTime != null">
|
|
org_stop_time,
|
|
</if>
|
|
<if test="tenantId != null">
|
|
tenant_id,
|
|
</if>
|
|
</trim>
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
<if test="id != null">
|
|
#{id,jdbcType=BIGINT},
|
|
</if>
|
|
<if test="orgNo != null">
|
|
#{orgNo,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="orgFullName != null">
|
|
#{orgFullName,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="orgAbr != null">
|
|
#{orgAbr,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="orgTpcd != null">
|
|
#{orgTpcd,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="orgStcd != null">
|
|
#{orgStcd,jdbcType=CHAR},
|
|
</if>
|
|
<if test="orgParentNo != null">
|
|
#{orgParentNo,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="sort != null">
|
|
#{sort,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="remark != null">
|
|
#{remark,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="createTime != null">
|
|
#{createTime,jdbcType=TIMESTAMP},
|
|
</if>
|
|
<if test="creator != null">
|
|
#{creator,jdbcType=BIGINT},
|
|
</if>
|
|
<if test="updateTime != null">
|
|
#{updateTime,jdbcType=TIMESTAMP},
|
|
</if>
|
|
<if test="updater != null">
|
|
#{updater,jdbcType=BIGINT},
|
|
</if>
|
|
<if test="orgCreateTime != null">
|
|
#{orgCreateTime,jdbcType=TIMESTAMP},
|
|
</if>
|
|
<if test="orgStopTime != null">
|
|
#{orgStopTime,jdbcType=TIMESTAMP},
|
|
</if>
|
|
<if test="tenantId != null">
|
|
#{tenantId,jdbcType=BIGINT},
|
|
</if>
|
|
</trim>
|
|
</insert>
|
|
<select id="countByExample" parameterType="com.jsh.erp.datasource.entities.OrganizationExample" resultType="java.lang.Integer">
|
|
<!--
|
|
WARNING - @mbggenerated
|
|
This element is automatically generated by MyBatis Generator, do not modify.
|
|
-->
|
|
select count(*) from jsh_organization
|
|
<if test="_parameter != null">
|
|
<include refid="Example_Where_Clause" />
|
|
</if>
|
|
</select>
|
|
<update id="updateByExampleSelective" parameterType="map">
|
|
<!--
|
|
WARNING - @mbggenerated
|
|
This element is automatically generated by MyBatis Generator, do not modify.
|
|
-->
|
|
update jsh_organization
|
|
<set>
|
|
<if test="record.id != null">
|
|
id = #{record.id,jdbcType=BIGINT},
|
|
</if>
|
|
<if test="record.orgNo != null">
|
|
org_no = #{record.orgNo,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="record.orgFullName != null">
|
|
org_full_name = #{record.orgFullName,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="record.orgAbr != null">
|
|
org_abr = #{record.orgAbr,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="record.orgTpcd != null">
|
|
org_tpcd = #{record.orgTpcd,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="record.orgStcd != null">
|
|
org_stcd = #{record.orgStcd,jdbcType=CHAR},
|
|
</if>
|
|
<if test="record.orgParentNo != null">
|
|
org_parent_no = #{record.orgParentNo,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="record.sort != null">
|
|
sort = #{record.sort,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="record.remark != null">
|
|
remark = #{record.remark,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="record.createTime != null">
|
|
create_time = #{record.createTime,jdbcType=TIMESTAMP},
|
|
</if>
|
|
<if test="record.creator != null">
|
|
creator = #{record.creator,jdbcType=BIGINT},
|
|
</if>
|
|
<if test="record.updateTime != null">
|
|
update_time = #{record.updateTime,jdbcType=TIMESTAMP},
|
|
</if>
|
|
<if test="record.updater != null">
|
|
updater = #{record.updater,jdbcType=BIGINT},
|
|
</if>
|
|
<if test="record.orgCreateTime != null">
|
|
org_create_time = #{record.orgCreateTime,jdbcType=TIMESTAMP},
|
|
</if>
|
|
<if test="record.orgStopTime != null">
|
|
org_stop_time = #{record.orgStopTime,jdbcType=TIMESTAMP},
|
|
</if>
|
|
<if test="record.tenantId != null">
|
|
tenant_id = #{record.tenantId,jdbcType=BIGINT},
|
|
</if>
|
|
</set>
|
|
<if test="_parameter != null">
|
|
<include refid="Update_By_Example_Where_Clause" />
|
|
</if>
|
|
</update>
|
|
<update id="updateByExample" parameterType="map">
|
|
<!--
|
|
WARNING - @mbggenerated
|
|
This element is automatically generated by MyBatis Generator, do not modify.
|
|
-->
|
|
update jsh_organization
|
|
set id = #{record.id,jdbcType=BIGINT},
|
|
org_no = #{record.orgNo,jdbcType=VARCHAR},
|
|
org_full_name = #{record.orgFullName,jdbcType=VARCHAR},
|
|
org_abr = #{record.orgAbr,jdbcType=VARCHAR},
|
|
org_tpcd = #{record.orgTpcd,jdbcType=VARCHAR},
|
|
org_stcd = #{record.orgStcd,jdbcType=CHAR},
|
|
org_parent_no = #{record.orgParentNo,jdbcType=VARCHAR},
|
|
sort = #{record.sort,jdbcType=VARCHAR},
|
|
remark = #{record.remark,jdbcType=VARCHAR},
|
|
create_time = #{record.createTime,jdbcType=TIMESTAMP},
|
|
creator = #{record.creator,jdbcType=BIGINT},
|
|
update_time = #{record.updateTime,jdbcType=TIMESTAMP},
|
|
updater = #{record.updater,jdbcType=BIGINT},
|
|
org_create_time = #{record.orgCreateTime,jdbcType=TIMESTAMP},
|
|
org_stop_time = #{record.orgStopTime,jdbcType=TIMESTAMP},
|
|
tenant_id = #{record.tenantId,jdbcType=BIGINT}
|
|
<if test="_parameter != null">
|
|
<include refid="Update_By_Example_Where_Clause" />
|
|
</if>
|
|
</update>
|
|
<update id="updateByPrimaryKeySelective" parameterType="com.jsh.erp.datasource.entities.Organization">
|
|
<!--
|
|
WARNING - @mbggenerated
|
|
This element is automatically generated by MyBatis Generator, do not modify.
|
|
-->
|
|
update jsh_organization
|
|
<set>
|
|
<if test="orgNo != null">
|
|
org_no = #{orgNo,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="orgFullName != null">
|
|
org_full_name = #{orgFullName,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="orgAbr != null">
|
|
org_abr = #{orgAbr,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="orgTpcd != null">
|
|
org_tpcd = #{orgTpcd,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="orgStcd != null">
|
|
org_stcd = #{orgStcd,jdbcType=CHAR},
|
|
</if>
|
|
<if test="orgParentNo != null">
|
|
org_parent_no = #{orgParentNo,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="sort != null">
|
|
sort = #{sort,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="remark != null">
|
|
remark = #{remark,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="createTime != null">
|
|
create_time = #{createTime,jdbcType=TIMESTAMP},
|
|
</if>
|
|
<if test="creator != null">
|
|
creator = #{creator,jdbcType=BIGINT},
|
|
</if>
|
|
<if test="updateTime != null">
|
|
update_time = #{updateTime,jdbcType=TIMESTAMP},
|
|
</if>
|
|
<if test="updater != null">
|
|
updater = #{updater,jdbcType=BIGINT},
|
|
</if>
|
|
<if test="orgCreateTime != null">
|
|
org_create_time = #{orgCreateTime,jdbcType=TIMESTAMP},
|
|
</if>
|
|
<if test="orgStopTime != null">
|
|
org_stop_time = #{orgStopTime,jdbcType=TIMESTAMP},
|
|
</if>
|
|
<if test="tenantId != null">
|
|
tenant_id = #{tenantId,jdbcType=BIGINT},
|
|
</if>
|
|
</set>
|
|
where id = #{id,jdbcType=BIGINT}
|
|
</update>
|
|
<update id="updateByPrimaryKey" parameterType="com.jsh.erp.datasource.entities.Organization">
|
|
<!--
|
|
WARNING - @mbggenerated
|
|
This element is automatically generated by MyBatis Generator, do not modify.
|
|
-->
|
|
update jsh_organization
|
|
set org_no = #{orgNo,jdbcType=VARCHAR},
|
|
org_full_name = #{orgFullName,jdbcType=VARCHAR},
|
|
org_abr = #{orgAbr,jdbcType=VARCHAR},
|
|
org_tpcd = #{orgTpcd,jdbcType=VARCHAR},
|
|
org_stcd = #{orgStcd,jdbcType=CHAR},
|
|
org_parent_no = #{orgParentNo,jdbcType=VARCHAR},
|
|
sort = #{sort,jdbcType=VARCHAR},
|
|
remark = #{remark,jdbcType=VARCHAR},
|
|
create_time = #{createTime,jdbcType=TIMESTAMP},
|
|
creator = #{creator,jdbcType=BIGINT},
|
|
update_time = #{updateTime,jdbcType=TIMESTAMP},
|
|
updater = #{updater,jdbcType=BIGINT},
|
|
org_create_time = #{orgCreateTime,jdbcType=TIMESTAMP},
|
|
org_stop_time = #{orgStopTime,jdbcType=TIMESTAMP},
|
|
tenant_id = #{tenantId,jdbcType=BIGINT}
|
|
where id = #{id,jdbcType=BIGINT}
|
|
</update>
|
|
</mapper> |