95 lines
2.1 KiB
XML
95 lines
2.1 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.zcloud.mapper.datasource.bus.ForeignCarDetailsMapper">
|
||
|
|
||
|
<!--外来车辆表名 -->
|
||
|
<sql id="tableName">
|
||
|
BUS_FOREIGNCAR_DETAILS
|
||
|
</sql>
|
||
|
|
||
|
<!-- 字段 -->
|
||
|
<sql id="Field">
|
||
|
FOREIGNCAR_DETAILS_ID,
|
||
|
FOREIGNCAR_ID,
|
||
|
NAME,
|
||
|
PHONO_NUMBER
|
||
|
</sql>
|
||
|
|
||
|
<!-- 字段值 -->
|
||
|
<sql id="FieldValue">
|
||
|
#{FOREIGNCAR_DETAILS_ID},
|
||
|
#{FOREIGNCAR_ID},
|
||
|
#{NAME},
|
||
|
#{PHONO_NUMBER}
|
||
|
</sql>
|
||
|
|
||
|
<!-- 新增-->
|
||
|
<insert id="save" parameterType="pd">
|
||
|
insert into
|
||
|
<include refid="tableName"></include>
|
||
|
(
|
||
|
<include refid="Field"></include>
|
||
|
) values (
|
||
|
<include refid="FieldValue"></include>
|
||
|
)
|
||
|
</insert>
|
||
|
|
||
|
<!-- 删除-->
|
||
|
<delete id="delete" parameterType="pd">
|
||
|
delete from
|
||
|
<include refid="tableName"></include>
|
||
|
where
|
||
|
FOREIGNCAR_ID = #{FOREIGNCAR_ID}
|
||
|
</delete>
|
||
|
|
||
|
<!-- 修改 -->
|
||
|
<update id="edit" parameterType="pd">
|
||
|
update
|
||
|
<include refid="tableName"></include>
|
||
|
set
|
||
|
NAME = #{NAME},
|
||
|
PHONO_NUMBER = #{PHONO_NUMBER},
|
||
|
FOREIGNCAR_DETAILS_ID = FOREIGNCAR_DETAILS_ID
|
||
|
where
|
||
|
FOREIGNCAR_DETAILS_ID = #{FOREIGNCAR_DETAILS_ID}
|
||
|
</update>
|
||
|
|
||
|
|
||
|
|
||
|
<!-- <!– 通过ID获取数据 –>-->
|
||
|
<!-- <select id="findById" parameterType="pd" resultType="pd">-->
|
||
|
<!-- select-->
|
||
|
<!-- <include refid="Field1"></include>-->
|
||
|
<!-- from -->
|
||
|
<!-- <include refid="tableName"></include>-->
|
||
|
<!-- where-->
|
||
|
<!-- FOREIGNCAR_ID = #{FOREIGNCAR_ID}-->
|
||
|
<!-- </select>-->
|
||
|
|
||
|
<!-- 列表 -->
|
||
|
<select id="datalistPage" parameterType="page" resultType="pd">
|
||
|
select
|
||
|
<include refid="Field"></include>
|
||
|
from
|
||
|
<include refid="tableName"></include> f
|
||
|
where 1 = 1
|
||
|
<if test="pd.FOREIGNCAR_ID != null and pd.FOREIGNCAR_ID != ''">
|
||
|
and f.FOREIGNCAR_ID = #{pd.FOREIGNCAR_ID}
|
||
|
</if>
|
||
|
order by f.NAME asc
|
||
|
|
||
|
</select>
|
||
|
|
||
|
<!-- 根据外来ID查询 -->
|
||
|
<select id="listAll" parameterType="pd" resultType="pd">
|
||
|
select
|
||
|
<include refid="Field"></include>
|
||
|
from
|
||
|
<include refid="tableName"></include>
|
||
|
where FOREIGNCAR_ID = #{FOREIGNCAR_ID}
|
||
|
order by NAME asc
|
||
|
</select>
|
||
|
|
||
|
|
||
|
</mapper>
|