|
@@ -21,6 +21,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
<result property="reservatType" column="reservat_type" />
|
|
<result property="reservatType" column="reservat_type" />
|
|
<result property="isReception" column="is_reception" />
|
|
<result property="isReception" column="is_reception" />
|
|
<result property="receptionId" column="reception_id" />
|
|
<result property="receptionId" column="reception_id" />
|
|
|
|
+ <result property="receptionName" column="reception_name" />
|
|
|
|
+ <result property="receptionPhone" column="reception_phone" />
|
|
<result property="createDept" column="create_dept" />
|
|
<result property="createDept" column="create_dept" />
|
|
<result property="createBy" column="create_by" />
|
|
<result property="createBy" column="create_by" />
|
|
<result property="createTime" column="create_time" />
|
|
<result property="createTime" column="create_time" />
|
|
@@ -51,6 +53,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
<if test="reservatType != null and reservatType != ''"> and reservat_type = #{reservatType}</if>
|
|
<if test="reservatType != null and reservatType != ''"> and reservat_type = #{reservatType}</if>
|
|
<if test="isReception != null and isReception != ''"> and is_reception = #{isReception}</if>
|
|
<if test="isReception != null and isReception != ''"> and is_reception = #{isReception}</if>
|
|
<if test="receptionId != null "> and reception_id = #{receptionId}</if>
|
|
<if test="receptionId != null "> and reception_id = #{receptionId}</if>
|
|
|
|
+ <if test="receptionName != null "> and reception_name = #{receptionName}</if>
|
|
|
|
+ <if test="receptionPhone != null "> and reception_phone = #{receptionPhone}</if>
|
|
<if test="createDept != null "> and create_dept = #{createDept}</if>
|
|
<if test="createDept != null "> and create_dept = #{createDept}</if>
|
|
</where>
|
|
</where>
|
|
</select>
|
|
</select>
|
|
@@ -78,6 +82,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
<if test="reservatType != null">reservat_type,</if>
|
|
<if test="reservatType != null">reservat_type,</if>
|
|
<if test="isReception != null">is_reception,</if>
|
|
<if test="isReception != null">is_reception,</if>
|
|
<if test="receptionId != null">reception_id,</if>
|
|
<if test="receptionId != null">reception_id,</if>
|
|
|
|
+
|
|
|
|
+ <if test="receptionName != null "> reception_name,</if>
|
|
|
|
+ <if test="receptionPhone != null "> reception_phone,</if>
|
|
|
|
+
|
|
<if test="createDept != null">create_dept,</if>
|
|
<if test="createDept != null">create_dept,</if>
|
|
<if test="createBy != null">create_by,</if>
|
|
<if test="createBy != null">create_by,</if>
|
|
<if test="createTime != null">create_time,</if>
|
|
<if test="createTime != null">create_time,</if>
|
|
@@ -101,6 +109,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
<if test="reservatType != null">#{reservatType},</if>
|
|
<if test="reservatType != null">#{reservatType},</if>
|
|
<if test="isReception != null">#{isReception},</if>
|
|
<if test="isReception != null">#{isReception},</if>
|
|
<if test="receptionId != null">#{receptionId},</if>
|
|
<if test="receptionId != null">#{receptionId},</if>
|
|
|
|
+
|
|
|
|
+ <if test="receptionName != null "> #{receptionName},</if>
|
|
|
|
+ <if test="receptionPhone != null "> #{receptionPhone},</if>
|
|
|
|
+
|
|
<if test="createDept != null">#{createDept},</if>
|
|
<if test="createDept != null">#{createDept},</if>
|
|
<if test="createBy != null">#{createBy},</if>
|
|
<if test="createBy != null">#{createBy},</if>
|
|
<if test="createTime != null">#{createTime},</if>
|
|
<if test="createTime != null">#{createTime},</if>
|
|
@@ -128,6 +140,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
<if test="reservatType != null">reservat_type = #{reservatType},</if>
|
|
<if test="reservatType != null">reservat_type = #{reservatType},</if>
|
|
<if test="isReception != null">is_reception = #{isReception},</if>
|
|
<if test="isReception != null">is_reception = #{isReception},</if>
|
|
<if test="receptionId != null">reception_id = #{receptionId},</if>
|
|
<if test="receptionId != null">reception_id = #{receptionId},</if>
|
|
|
|
+
|
|
|
|
+ <if test="receptionName != null "> reception_name = #{receptionName},</if>
|
|
|
|
+ <if test="receptionPhone != null "> reception_phone = #{receptionPhone},</if>
|
|
|
|
+
|
|
<if test="createDept != null">create_dept = #{createDept},</if>
|
|
<if test="createDept != null">create_dept = #{createDept},</if>
|
|
<if test="createBy != null">create_by = #{createBy},</if>
|
|
<if test="createBy != null">create_by = #{createBy},</if>
|
|
<if test="createTime != null">create_time = #{createTime},</if>
|
|
<if test="createTime != null">create_time = #{createTime},</if>
|