|
|
@@ -1,13 +1,14 @@
|
|
|
<?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.idea.paymentManagement.mapper.BillPayLogMapper">
|
|
|
- <resultMap id="BaseResultMap" type="com.idea.paymentManagement.model.BillPayLog">
|
|
|
+<mapper namespace="com.idea.paymentManagement.mapper.PayLogMapper">
|
|
|
+ <resultMap id="BaseResultMap" type="com.idea.paymentManagement.model.PayLog">
|
|
|
<id column="id" jdbcType="VARCHAR" property="id" />
|
|
|
+ <result column="pay_type" jdbcType="INTEGER" property="payType" />
|
|
|
+ <result column="content_type" jdbcType="INTEGER" property="contentType" />
|
|
|
<result column="bank_name" jdbcType="VARCHAR" property="bankName" />
|
|
|
<result column="bank_branch_name" jdbcType="VARCHAR" property="bankBranchName" />
|
|
|
<result column="bank_number" jdbcType="CHAR" property="bankNumber" />
|
|
|
<result column="pay_money" jdbcType="DECIMAL" property="payMoney" />
|
|
|
- <result column="pay_type" jdbcType="INTEGER" property="payType" />
|
|
|
<result column="pay_time" jdbcType="TIMESTAMP" property="payTime" />
|
|
|
<result column="payment_method" jdbcType="INTEGER" property="paymentMethod" />
|
|
|
<result column="status" jdbcType="INTEGER" property="status" />
|
|
|
@@ -16,8 +17,11 @@
|
|
|
<result column="updated_by" jdbcType="VARCHAR" property="updatedBy" />
|
|
|
<result column="updated_at" jdbcType="TIMESTAMP" property="updatedAt" />
|
|
|
<result column="remark" jdbcType="VARCHAR" property="remark" />
|
|
|
+ <result column="contract_id" jdbcType="VARCHAR" property="contractId" />
|
|
|
+ <result column="customer_management_id" jdbcType="VARCHAR" property="customerManagementId" />
|
|
|
+ <result column="house_id" jdbcType="VARCHAR" property="houseId" />
|
|
|
</resultMap>
|
|
|
- <resultMap extends="BaseResultMap" id="ResultMapWithBLOBs" type="com.idea.paymentManagement.model.BillPayLog">
|
|
|
+ <resultMap extends="BaseResultMap" id="ResultMapWithBLOBs" type="com.idea.paymentManagement.model.PayLog">
|
|
|
<result column="file_list" jdbcType="LONGVARCHAR" property="fileList" />
|
|
|
</resultMap>
|
|
|
<sql id="Example_Where_Clause">
|
|
|
@@ -79,13 +83,14 @@
|
|
|
</where>
|
|
|
</sql>
|
|
|
<sql id="Base_Column_List">
|
|
|
- id, bank_name, bank_branch_name, bank_number, pay_money, pay_type, pay_time, payment_method,
|
|
|
- status, created_by, created_at, updated_by, updated_at, remark
|
|
|
+ id, pay_type, content_type, bank_name, bank_branch_name, bank_number, pay_money,
|
|
|
+ pay_time, payment_method, status, created_by, created_at, updated_by, updated_at,
|
|
|
+ remark, contract_id, customer_management_id, house_id
|
|
|
</sql>
|
|
|
<sql id="Blob_Column_List">
|
|
|
file_list
|
|
|
</sql>
|
|
|
- <select id="selectByExampleWithBLOBs" parameterType="com.idea.paymentManagement.model.BillPayLogExample" resultMap="ResultMapWithBLOBs">
|
|
|
+ <select id="selectByExampleWithBLOBs" parameterType="com.idea.paymentManagement.model.PayLogExample" resultMap="ResultMapWithBLOBs">
|
|
|
select
|
|
|
<if test="distinct">
|
|
|
distinct
|
|
|
@@ -93,7 +98,7 @@
|
|
|
<include refid="Base_Column_List" />
|
|
|
,
|
|
|
<include refid="Blob_Column_List" />
|
|
|
- from bill_pay_log
|
|
|
+ from pay_log
|
|
|
<if test="_parameter != null">
|
|
|
<include refid="Example_Where_Clause" />
|
|
|
</if>
|
|
|
@@ -101,13 +106,13 @@
|
|
|
order by ${orderByClause}
|
|
|
</if>
|
|
|
</select>
|
|
|
- <select id="selectByExample" parameterType="com.idea.paymentManagement.model.BillPayLogExample" resultMap="BaseResultMap">
|
|
|
+ <select id="selectByExample" parameterType="com.idea.paymentManagement.model.PayLogExample" resultMap="BaseResultMap">
|
|
|
select
|
|
|
<if test="distinct">
|
|
|
distinct
|
|
|
</if>
|
|
|
<include refid="Base_Column_List" />
|
|
|
- from bill_pay_log
|
|
|
+ from pay_log
|
|
|
<if test="_parameter != null">
|
|
|
<include refid="Example_Where_Clause" />
|
|
|
</if>
|
|
|
@@ -120,39 +125,47 @@
|
|
|
<include refid="Base_Column_List" />
|
|
|
,
|
|
|
<include refid="Blob_Column_List" />
|
|
|
- from bill_pay_log
|
|
|
+ from pay_log
|
|
|
where id = #{id,jdbcType=VARCHAR}
|
|
|
</select>
|
|
|
<delete id="deleteByPrimaryKey" parameterType="java.lang.String">
|
|
|
- delete from bill_pay_log
|
|
|
+ delete from pay_log
|
|
|
where id = #{id,jdbcType=VARCHAR}
|
|
|
</delete>
|
|
|
- <delete id="deleteByExample" parameterType="com.idea.paymentManagement.model.BillPayLogExample">
|
|
|
- delete from bill_pay_log
|
|
|
+ <delete id="deleteByExample" parameterType="com.idea.paymentManagement.model.PayLogExample">
|
|
|
+ delete from pay_log
|
|
|
<if test="_parameter != null">
|
|
|
<include refid="Example_Where_Clause" />
|
|
|
</if>
|
|
|
</delete>
|
|
|
- <insert id="insert" parameterType="com.idea.paymentManagement.model.BillPayLog">
|
|
|
- insert into bill_pay_log (id, bank_name, bank_branch_name,
|
|
|
- bank_number, pay_money, pay_type,
|
|
|
- pay_time, payment_method, status,
|
|
|
- created_by, created_at, updated_by,
|
|
|
- updated_at, remark, file_list
|
|
|
- )
|
|
|
- values (#{id,jdbcType=VARCHAR}, #{bankName,jdbcType=VARCHAR}, #{bankBranchName,jdbcType=VARCHAR},
|
|
|
- #{bankNumber,jdbcType=CHAR}, #{payMoney,jdbcType=DECIMAL}, #{payType,jdbcType=INTEGER},
|
|
|
- #{payTime,jdbcType=TIMESTAMP}, #{paymentMethod,jdbcType=INTEGER}, #{status,jdbcType=INTEGER},
|
|
|
- #{createdBy,jdbcType=VARCHAR}, #{createdAt,jdbcType=TIMESTAMP}, #{updatedBy,jdbcType=VARCHAR},
|
|
|
- #{updatedAt,jdbcType=TIMESTAMP}, #{remark,jdbcType=VARCHAR}, #{fileList,jdbcType=LONGVARCHAR}
|
|
|
- )
|
|
|
+ <insert id="insert" parameterType="com.idea.paymentManagement.model.PayLog">
|
|
|
+ insert into pay_log (id, pay_type, content_type,
|
|
|
+ bank_name, bank_branch_name, bank_number,
|
|
|
+ pay_money, pay_time, payment_method,
|
|
|
+ status, created_by, created_at,
|
|
|
+ updated_by, updated_at, remark,
|
|
|
+ contract_id, customer_management_id, house_id,
|
|
|
+ file_list)
|
|
|
+ values (#{id,jdbcType=VARCHAR}, #{payType,jdbcType=INTEGER}, #{contentType,jdbcType=INTEGER},
|
|
|
+ #{bankName,jdbcType=VARCHAR}, #{bankBranchName,jdbcType=VARCHAR}, #{bankNumber,jdbcType=CHAR},
|
|
|
+ #{payMoney,jdbcType=DECIMAL}, #{payTime,jdbcType=TIMESTAMP}, #{paymentMethod,jdbcType=INTEGER},
|
|
|
+ #{status,jdbcType=INTEGER}, #{createdBy,jdbcType=VARCHAR}, #{createdAt,jdbcType=TIMESTAMP},
|
|
|
+ #{updatedBy,jdbcType=VARCHAR}, #{updatedAt,jdbcType=TIMESTAMP}, #{remark,jdbcType=VARCHAR},
|
|
|
+ #{contractId,jdbcType=VARCHAR}, #{customerManagementId,jdbcType=VARCHAR}, #{houseId,jdbcType=VARCHAR},
|
|
|
+ #{fileList,jdbcType=LONGVARCHAR})
|
|
|
</insert>
|
|
|
- <insert id="insertSelective" parameterType="com.idea.paymentManagement.model.BillPayLog">
|
|
|
- insert into bill_pay_log
|
|
|
+ <insert id="insertSelective" parameterType="com.idea.paymentManagement.model.PayLog">
|
|
|
+ insert into pay_log
|
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
|
<if test="id != null">
|
|
|
id,
|
|
|
</if>
|
|
|
+ <if test="payType != null">
|
|
|
+ pay_type,
|
|
|
+ </if>
|
|
|
+ <if test="contentType != null">
|
|
|
+ content_type,
|
|
|
+ </if>
|
|
|
<if test="bankName != null">
|
|
|
bank_name,
|
|
|
</if>
|
|
|
@@ -165,9 +178,6 @@
|
|
|
<if test="payMoney != null">
|
|
|
pay_money,
|
|
|
</if>
|
|
|
- <if test="payType != null">
|
|
|
- pay_type,
|
|
|
- </if>
|
|
|
<if test="payTime != null">
|
|
|
pay_time,
|
|
|
</if>
|
|
|
@@ -192,6 +202,15 @@
|
|
|
<if test="remark != null">
|
|
|
remark,
|
|
|
</if>
|
|
|
+ <if test="contractId != null">
|
|
|
+ contract_id,
|
|
|
+ </if>
|
|
|
+ <if test="customerManagementId != null">
|
|
|
+ customer_management_id,
|
|
|
+ </if>
|
|
|
+ <if test="houseId != null">
|
|
|
+ house_id,
|
|
|
+ </if>
|
|
|
<if test="fileList != null">
|
|
|
file_list,
|
|
|
</if>
|
|
|
@@ -200,6 +219,12 @@
|
|
|
<if test="id != null">
|
|
|
#{id,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
+ <if test="payType != null">
|
|
|
+ #{payType,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="contentType != null">
|
|
|
+ #{contentType,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
<if test="bankName != null">
|
|
|
#{bankName,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
@@ -212,9 +237,6 @@
|
|
|
<if test="payMoney != null">
|
|
|
#{payMoney,jdbcType=DECIMAL},
|
|
|
</if>
|
|
|
- <if test="payType != null">
|
|
|
- #{payType,jdbcType=INTEGER},
|
|
|
- </if>
|
|
|
<if test="payTime != null">
|
|
|
#{payTime,jdbcType=TIMESTAMP},
|
|
|
</if>
|
|
|
@@ -239,23 +261,38 @@
|
|
|
<if test="remark != null">
|
|
|
#{remark,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
+ <if test="contractId != null">
|
|
|
+ #{contractId,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="customerManagementId != null">
|
|
|
+ #{customerManagementId,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="houseId != null">
|
|
|
+ #{houseId,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
<if test="fileList != null">
|
|
|
#{fileList,jdbcType=LONGVARCHAR},
|
|
|
</if>
|
|
|
</trim>
|
|
|
</insert>
|
|
|
- <select id="countByExample" parameterType="com.idea.paymentManagement.model.BillPayLogExample" resultType="java.lang.Long">
|
|
|
- select count(*) from bill_pay_log
|
|
|
+ <select id="countByExample" parameterType="com.idea.paymentManagement.model.PayLogExample" resultType="java.lang.Long">
|
|
|
+ select count(*) from pay_log
|
|
|
<if test="_parameter != null">
|
|
|
<include refid="Example_Where_Clause" />
|
|
|
</if>
|
|
|
</select>
|
|
|
<update id="updateByExampleSelective" parameterType="map">
|
|
|
- update bill_pay_log
|
|
|
+ update pay_log
|
|
|
<set>
|
|
|
<if test="record.id != null">
|
|
|
id = #{record.id,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
+ <if test="record.payType != null">
|
|
|
+ pay_type = #{record.payType,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="record.contentType != null">
|
|
|
+ content_type = #{record.contentType,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
<if test="record.bankName != null">
|
|
|
bank_name = #{record.bankName,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
@@ -268,9 +305,6 @@
|
|
|
<if test="record.payMoney != null">
|
|
|
pay_money = #{record.payMoney,jdbcType=DECIMAL},
|
|
|
</if>
|
|
|
- <if test="record.payType != null">
|
|
|
- pay_type = #{record.payType,jdbcType=INTEGER},
|
|
|
- </if>
|
|
|
<if test="record.payTime != null">
|
|
|
pay_time = #{record.payTime,jdbcType=TIMESTAMP},
|
|
|
</if>
|
|
|
@@ -295,6 +329,15 @@
|
|
|
<if test="record.remark != null">
|
|
|
remark = #{record.remark,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
+ <if test="record.contractId != null">
|
|
|
+ contract_id = #{record.contractId,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="record.customerManagementId != null">
|
|
|
+ customer_management_id = #{record.customerManagementId,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="record.houseId != null">
|
|
|
+ house_id = #{record.houseId,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
<if test="record.fileList != null">
|
|
|
file_list = #{record.fileList,jdbcType=LONGVARCHAR},
|
|
|
</if>
|
|
|
@@ -304,13 +347,14 @@
|
|
|
</if>
|
|
|
</update>
|
|
|
<update id="updateByExampleWithBLOBs" parameterType="map">
|
|
|
- update bill_pay_log
|
|
|
+ update pay_log
|
|
|
set id = #{record.id,jdbcType=VARCHAR},
|
|
|
+ pay_type = #{record.payType,jdbcType=INTEGER},
|
|
|
+ content_type = #{record.contentType,jdbcType=INTEGER},
|
|
|
bank_name = #{record.bankName,jdbcType=VARCHAR},
|
|
|
bank_branch_name = #{record.bankBranchName,jdbcType=VARCHAR},
|
|
|
bank_number = #{record.bankNumber,jdbcType=CHAR},
|
|
|
pay_money = #{record.payMoney,jdbcType=DECIMAL},
|
|
|
- pay_type = #{record.payType,jdbcType=INTEGER},
|
|
|
pay_time = #{record.payTime,jdbcType=TIMESTAMP},
|
|
|
payment_method = #{record.paymentMethod,jdbcType=INTEGER},
|
|
|
status = #{record.status,jdbcType=INTEGER},
|
|
|
@@ -319,19 +363,23 @@
|
|
|
updated_by = #{record.updatedBy,jdbcType=VARCHAR},
|
|
|
updated_at = #{record.updatedAt,jdbcType=TIMESTAMP},
|
|
|
remark = #{record.remark,jdbcType=VARCHAR},
|
|
|
+ contract_id = #{record.contractId,jdbcType=VARCHAR},
|
|
|
+ customer_management_id = #{record.customerManagementId,jdbcType=VARCHAR},
|
|
|
+ house_id = #{record.houseId,jdbcType=VARCHAR},
|
|
|
file_list = #{record.fileList,jdbcType=LONGVARCHAR}
|
|
|
<if test="_parameter != null">
|
|
|
<include refid="Update_By_Example_Where_Clause" />
|
|
|
</if>
|
|
|
</update>
|
|
|
<update id="updateByExample" parameterType="map">
|
|
|
- update bill_pay_log
|
|
|
+ update pay_log
|
|
|
set id = #{record.id,jdbcType=VARCHAR},
|
|
|
+ pay_type = #{record.payType,jdbcType=INTEGER},
|
|
|
+ content_type = #{record.contentType,jdbcType=INTEGER},
|
|
|
bank_name = #{record.bankName,jdbcType=VARCHAR},
|
|
|
bank_branch_name = #{record.bankBranchName,jdbcType=VARCHAR},
|
|
|
bank_number = #{record.bankNumber,jdbcType=CHAR},
|
|
|
pay_money = #{record.payMoney,jdbcType=DECIMAL},
|
|
|
- pay_type = #{record.payType,jdbcType=INTEGER},
|
|
|
pay_time = #{record.payTime,jdbcType=TIMESTAMP},
|
|
|
payment_method = #{record.paymentMethod,jdbcType=INTEGER},
|
|
|
status = #{record.status,jdbcType=INTEGER},
|
|
|
@@ -339,14 +387,23 @@
|
|
|
created_at = #{record.createdAt,jdbcType=TIMESTAMP},
|
|
|
updated_by = #{record.updatedBy,jdbcType=VARCHAR},
|
|
|
updated_at = #{record.updatedAt,jdbcType=TIMESTAMP},
|
|
|
- remark = #{record.remark,jdbcType=VARCHAR}
|
|
|
+ remark = #{record.remark,jdbcType=VARCHAR},
|
|
|
+ contract_id = #{record.contractId,jdbcType=VARCHAR},
|
|
|
+ customer_management_id = #{record.customerManagementId,jdbcType=VARCHAR},
|
|
|
+ house_id = #{record.houseId,jdbcType=VARCHAR}
|
|
|
<if test="_parameter != null">
|
|
|
<include refid="Update_By_Example_Where_Clause" />
|
|
|
</if>
|
|
|
</update>
|
|
|
- <update id="updateByPrimaryKeySelective" parameterType="com.idea.paymentManagement.model.BillPayLog">
|
|
|
- update bill_pay_log
|
|
|
+ <update id="updateByPrimaryKeySelective" parameterType="com.idea.paymentManagement.model.PayLog">
|
|
|
+ update pay_log
|
|
|
<set>
|
|
|
+ <if test="payType != null">
|
|
|
+ pay_type = #{payType,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="contentType != null">
|
|
|
+ content_type = #{contentType,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
<if test="bankName != null">
|
|
|
bank_name = #{bankName,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
@@ -359,9 +416,6 @@
|
|
|
<if test="payMoney != null">
|
|
|
pay_money = #{payMoney,jdbcType=DECIMAL},
|
|
|
</if>
|
|
|
- <if test="payType != null">
|
|
|
- pay_type = #{payType,jdbcType=INTEGER},
|
|
|
- </if>
|
|
|
<if test="payTime != null">
|
|
|
pay_time = #{payTime,jdbcType=TIMESTAMP},
|
|
|
</if>
|
|
|
@@ -386,19 +440,29 @@
|
|
|
<if test="remark != null">
|
|
|
remark = #{remark,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
+ <if test="contractId != null">
|
|
|
+ contract_id = #{contractId,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="customerManagementId != null">
|
|
|
+ customer_management_id = #{customerManagementId,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="houseId != null">
|
|
|
+ house_id = #{houseId,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
<if test="fileList != null">
|
|
|
file_list = #{fileList,jdbcType=LONGVARCHAR},
|
|
|
</if>
|
|
|
</set>
|
|
|
where id = #{id,jdbcType=VARCHAR}
|
|
|
</update>
|
|
|
- <update id="updateByPrimaryKeyWithBLOBs" parameterType="com.idea.paymentManagement.model.BillPayLog">
|
|
|
- update bill_pay_log
|
|
|
- set bank_name = #{bankName,jdbcType=VARCHAR},
|
|
|
+ <update id="updateByPrimaryKeyWithBLOBs" parameterType="com.idea.paymentManagement.model.PayLog">
|
|
|
+ update pay_log
|
|
|
+ set pay_type = #{payType,jdbcType=INTEGER},
|
|
|
+ content_type = #{contentType,jdbcType=INTEGER},
|
|
|
+ bank_name = #{bankName,jdbcType=VARCHAR},
|
|
|
bank_branch_name = #{bankBranchName,jdbcType=VARCHAR},
|
|
|
bank_number = #{bankNumber,jdbcType=CHAR},
|
|
|
pay_money = #{payMoney,jdbcType=DECIMAL},
|
|
|
- pay_type = #{payType,jdbcType=INTEGER},
|
|
|
pay_time = #{payTime,jdbcType=TIMESTAMP},
|
|
|
payment_method = #{paymentMethod,jdbcType=INTEGER},
|
|
|
status = #{status,jdbcType=INTEGER},
|
|
|
@@ -407,16 +471,20 @@
|
|
|
updated_by = #{updatedBy,jdbcType=VARCHAR},
|
|
|
updated_at = #{updatedAt,jdbcType=TIMESTAMP},
|
|
|
remark = #{remark,jdbcType=VARCHAR},
|
|
|
+ contract_id = #{contractId,jdbcType=VARCHAR},
|
|
|
+ customer_management_id = #{customerManagementId,jdbcType=VARCHAR},
|
|
|
+ house_id = #{houseId,jdbcType=VARCHAR},
|
|
|
file_list = #{fileList,jdbcType=LONGVARCHAR}
|
|
|
where id = #{id,jdbcType=VARCHAR}
|
|
|
</update>
|
|
|
- <update id="updateByPrimaryKey" parameterType="com.idea.paymentManagement.model.BillPayLog">
|
|
|
- update bill_pay_log
|
|
|
- set bank_name = #{bankName,jdbcType=VARCHAR},
|
|
|
+ <update id="updateByPrimaryKey" parameterType="com.idea.paymentManagement.model.PayLog">
|
|
|
+ update pay_log
|
|
|
+ set pay_type = #{payType,jdbcType=INTEGER},
|
|
|
+ content_type = #{contentType,jdbcType=INTEGER},
|
|
|
+ bank_name = #{bankName,jdbcType=VARCHAR},
|
|
|
bank_branch_name = #{bankBranchName,jdbcType=VARCHAR},
|
|
|
bank_number = #{bankNumber,jdbcType=CHAR},
|
|
|
pay_money = #{payMoney,jdbcType=DECIMAL},
|
|
|
- pay_type = #{payType,jdbcType=INTEGER},
|
|
|
pay_time = #{payTime,jdbcType=TIMESTAMP},
|
|
|
payment_method = #{paymentMethod,jdbcType=INTEGER},
|
|
|
status = #{status,jdbcType=INTEGER},
|
|
|
@@ -424,7 +492,10 @@
|
|
|
created_at = #{createdAt,jdbcType=TIMESTAMP},
|
|
|
updated_by = #{updatedBy,jdbcType=VARCHAR},
|
|
|
updated_at = #{updatedAt,jdbcType=TIMESTAMP},
|
|
|
- remark = #{remark,jdbcType=VARCHAR}
|
|
|
+ remark = #{remark,jdbcType=VARCHAR},
|
|
|
+ contract_id = #{contractId,jdbcType=VARCHAR},
|
|
|
+ customer_management_id = #{customerManagementId,jdbcType=VARCHAR},
|
|
|
+ house_id = #{houseId,jdbcType=VARCHAR}
|
|
|
where id = #{id,jdbcType=VARCHAR}
|
|
|
</update>
|
|
|
</mapper>
|