|
@@ -7,9 +7,11 @@
|
7
|
7
|
<result column="uuid" property="uuid" jdbcType="INTEGER" />
|
8
|
8
|
<result column="uuid_type" property="uuidType" jdbcType="VARCHAR" />
|
9
|
9
|
<result column="uuid_name" property="uuidName" jdbcType="VARCHAR" />
|
|
10
|
+ <result column="uuid_role" property="uuidRole" jdbcType="VARCHAR" />
|
10
|
11
|
<result column="reply_uuid" property="replyUuid" jdbcType="INTEGER" />
|
11
|
12
|
<result column="reply_uuid_type" property="replyUuidType" jdbcType="VARCHAR" />
|
12
|
13
|
<result column="reply_uuid_name" property="replyUuidName" jdbcType="VARCHAR" />
|
|
14
|
+ <result column="reply_uuid_role" property="replyUuidRole" jdbcType="VARCHAR" />
|
13
|
15
|
<result column="transaction_id" property="transactionId" jdbcType="INTEGER" />
|
14
|
16
|
<result column="reply_content" property="replyContent" jdbcType="VARCHAR" />
|
15
|
17
|
<result column="create_date" property="createDate" jdbcType="TIMESTAMP" />
|
|
@@ -17,7 +19,7 @@
|
17
|
19
|
<result column="room_no_name" property="roomNoName" jdbcType="INTEGER" />
|
18
|
20
|
</resultMap>
|
19
|
21
|
<sql id="Base_Column_List" >
|
20
|
|
- id, community_id, transaction_id,uuid,uuid_type,
|
|
22
|
+ id, community_id, transaction_id,uuid,uuid_type,uuid_role,reply_uuid_role,
|
21
|
23
|
uuid_name, reply_content,
|
22
|
24
|
reply_uuid, reply_uuid_type,reply_uuid_name, create_date,release_identity
|
23
|
25
|
</sql>
|
|
@@ -32,11 +34,11 @@
|
32
|
34
|
where id = #{id,jdbcType=INTEGER}
|
33
|
35
|
</delete>
|
34
|
36
|
<insert id="insert" parameterType="com.community.huiju.model.TpTransactionReply" useGeneratedKeys="true" keyProperty="id" keyColumn="id">
|
35
|
|
- insert into tp_transaction_reply (id, community_id, transaction_id,uuid,uuid_type,
|
|
37
|
+ insert into tp_transaction_reply (id, community_id, transaction_id,uuid,uuid_type,uuid_role,reply_uuid_role,
|
36
|
38
|
uuid_name, reply_content,
|
37
|
39
|
reply_uuid, reply_uuid_type,reply_uuid_name, create_date,release_identity
|
38
|
40
|
)
|
39
|
|
- values (#{id,jdbcType=INTEGER}, #{communityId,jdbcType=INTEGER}, #{transactionId,jdbcType=INTEGER},#{uuid},#{uuidType},
|
|
41
|
+ values (#{id,jdbcType=INTEGER}, #{communityId,jdbcType=INTEGER}, #{transactionId,jdbcType=INTEGER},#{uuid},#{uuidType},#{uuidRole},#{replyUuidRole},
|
40
|
42
|
#{uuidName,jdbcType=VARCHAR}, #{replyContent,jdbcType=VARCHAR}, #{replyUuid,jdbcType=INTEGER},
|
41
|
43
|
#{replyUuidType,jdbcType=VARCHAR}, #{replyUuidName,jdbcType=VARCHAR}, #{createDate,jdbcType=TIMESTAMP},#{releaseIdentity,jdbcType=VARCHAR}
|
42
|
44
|
)
|