1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
| <?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">
| <!-- namespace:该mapper.xml映射文件的 唯一标识 -->
| <mapper namespace="com.hx.other.service.dao.mapper.PerformanceInfoMapper">
|
| <!-- 整个实体类修改,表字段=实体类字段-->
| <sql id="Update_Column_All">
| <trim prefixOverrides=",">
| ,performanceTotal = #{performanceTotal},deductionTime = #{deductionTime},serviceShopId = #{serviceShopId},serviceShopName = #{serviceShopName},deductionDoctorId = #{deductionDoctorId},deductionDoctorName = #{deductionDoctorName},nurseCorpUserId = #{nurseCorpUserId},nurseCorpUserName = #{nurseCorpUserName},userId = #{userId},userName = #{userName},belongConsultantId = #{belongConsultantId},belongConsultantName = #{belongConsultantName},commonId = #{commonId},commonName = #{commonName},isDel = #{isDel},createTime = #{createTime},editTime = #{editTime}
| </trim>
| </sql>
|
| <!-- 后续通过 namespace.id-->
| <!--parameterType:输入参数的类型
| resultType:查询返回结果值的类型 ,返回类型 -->
| <insert id="insert" parameterType="com.hx.other.service.model.PerformanceInfo">
| <selectKey keyProperty="id" resultType="String" order="BEFORE">
| select replace(uuid(),'-','') from dual
| </selectKey>
| insert into performance_info (id,performanceTotal,deductionTime,serviceShopId,serviceShopName,deductionDoctorId,deductionDoctorName,nurseCorpUserId,nurseCorpUserName,userId,userName,belongConsultantId,belongConsultantName,commonId,commonName,isDel,createTime,editTime) values (#{id},#{performanceTotal},#{deductionTime},#{serviceShopId},#{serviceShopName},#{deductionDoctorId},#{deductionDoctorName},#{nurseCorpUserId},#{nurseCorpUserName},#{userId},#{userName},#{belongConsultantId},#{belongConsultantName},#{commonId},#{commonName},#{isDel},#{createTime},#{editTime})
| </insert>
|
| <insert id="insertById" parameterType="com.hx.other.service.model.PerformanceInfo">
| insert into performance_info (id,performanceTotal,deductionTime,serviceShopId,serviceShopName,deductionDoctorId,deductionDoctorName,nurseCorpUserId,nurseCorpUserName,userId,userName,belongConsultantId,belongConsultantName,commonId,commonName,isDel,createTime,editTime) values (#{id},#{performanceTotal},#{deductionTime},#{serviceShopId},#{serviceShopName},#{deductionDoctorId},#{deductionDoctorName},#{nurseCorpUserId},#{nurseCorpUserName},#{userId},#{userName},#{belongConsultantId},#{belongConsultantName},#{commonId},#{commonName},#{isDel},#{createTime},#{editTime})
| </insert>
|
| <select id="selectList" resultType="com.hx.other.service.model.PerformanceInfo" parameterType="com.hx.mybatisTool.SqlSentence" >
| ${sqlSentence}
| </select>
|
| <select id="selectListMap" resultType="java.util.Map" parameterType="com.hx.mybatisTool.SqlSentence" >
| ${sqlSentence}
| </select>
|
| <select id="selectOne" resultType="com.hx.other.service.model.PerformanceInfo" parameterType="com.hx.mybatisTool.SqlSentence" >
| ${sqlSentence}
| </select>
|
| <select id="selectOneMap" resultType="java.util.Map" parameterType="com.hx.mybatisTool.SqlSentence" >
| ${sqlSentence}
| </select>
|
| <select id="selectCount" resultType="int" parameterType="com.hx.mybatisTool.SqlSentence" >
| select
| COUNT(*)
| from performance_info
| WHERE ${sqlSentence}
| </select>
|
| <select id="selectCountSql" resultType="int" parameterType="com.hx.mybatisTool.SqlSentence" >
| ${sqlSentence}
| </select>
|
| <select id="selectOneByKey" resultType="com.hx.other.service.model.PerformanceInfo" parameterType="java.lang.Object" >
| select
| id,performanceTotal,deductionTime,serviceShopId,serviceShopName,deductionDoctorId,deductionDoctorName,nurseCorpUserId,nurseCorpUserName,userId,userName,belongConsultantId,belongConsultantName,commonId,commonName,isDel,createTime,editTime
| from performance_info
| WHERE id = #{value}
| </select>
|
| <select id="selectOneByKeyBlob" resultType="com.hx.other.service.model.PerformanceInfo" parameterType="java.lang.Object" >
| select
| id,performanceTotal,deductionTime,serviceShopId,serviceShopName,deductionDoctorId,deductionDoctorName,nurseCorpUserId,nurseCorpUserName,userId,userName,belongConsultantId,belongConsultantName,commonId,commonName,isDel,createTime,editTime
| from performance_info
| WHERE id = #{value}
| </select>
|
| <update id="updateWhere" parameterType="com.hx.mybatisTool.SqlSentence">
| update
| performance_info
| SET ${sqlSentence}
| </update>
|
| <update id="updateAll" parameterType="com.hx.other.service.model.PerformanceInfo">
| update performance_info
| SET <include refid="Update_Column_All"/>
| WHERE id = #{id}
| </update>
|
| <delete id="deleteWhere" parameterType="com.hx.mybatisTool.SqlSentence">
| delete from performance_info WHERE ${sqlSentence}
| </delete>
|
| <delete id="deleteById" parameterType="java.lang.Object">
| delete from performance_info WHERE id = #{value}
| </delete>
|
| </mapper>
|
|