|
@@ -14,6 +14,7 @@
|
14
|
14
|
<result column="reply_uuid_role" property="replyUuidRole" jdbcType="VARCHAR" />
|
15
|
15
|
<result column="transaction_id" property="transactionId" jdbcType="INTEGER" />
|
16
|
16
|
<result column="reply_content" property="replyContent" jdbcType="VARCHAR" />
|
|
17
|
+ <result column="publish_type" property="publishType" jdbcType="VARCHAR" />
|
17
|
18
|
<result column="create_date" property="createDate" jdbcType="TIMESTAMP" />
|
18
|
19
|
<result column="release_identity" property="releaseIdentity" jdbcType="VARCHAR" />
|
19
|
20
|
<result column="room_no_name" property="roomNoName" jdbcType="INTEGER" />
|
|
@@ -21,7 +22,7 @@
|
21
|
22
|
<sql id="Base_Column_List" >
|
22
|
23
|
id, community_id, transaction_id,uuid,uuid_type,uuid_role,reply_uuid_role,
|
23
|
24
|
uuid_name, reply_content,
|
24
|
|
- reply_uuid, reply_uuid_type,reply_uuid_name, create_date,release_identity
|
|
25
|
+ reply_uuid, reply_uuid_type,reply_uuid_name, create_date,release_identity,publish_type
|
25
|
26
|
</sql>
|
26
|
27
|
<select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Integer" >
|
27
|
28
|
select
|
|
@@ -36,11 +37,11 @@
|
36
|
37
|
<insert id="insert" parameterType="com.community.huiju.model.TpTransactionReply" useGeneratedKeys="true" keyProperty="id" keyColumn="id">
|
37
|
38
|
insert into tp_transaction_reply (id, community_id, transaction_id,uuid,uuid_type,uuid_role,reply_uuid_role,
|
38
|
39
|
uuid_name, reply_content,
|
39
|
|
- reply_uuid, reply_uuid_type,reply_uuid_name, create_date,release_identity
|
|
40
|
+ reply_uuid, reply_uuid_type,reply_uuid_name, create_date,release_identity,publish_type
|
40
|
41
|
)
|
41
|
42
|
values (#{id,jdbcType=INTEGER}, #{communityId,jdbcType=INTEGER}, #{transactionId,jdbcType=INTEGER},#{uuid},#{uuidType},#{uuidRole},#{replyUuidRole},
|
42
|
43
|
#{uuidName,jdbcType=VARCHAR}, #{replyContent,jdbcType=VARCHAR}, #{replyUuid,jdbcType=INTEGER},
|
43
|
|
- #{replyUuidType,jdbcType=VARCHAR}, #{replyUuidName,jdbcType=VARCHAR}, #{createDate,jdbcType=TIMESTAMP},#{releaseIdentity,jdbcType=VARCHAR}
|
|
44
|
+ #{replyUuidType,jdbcType=VARCHAR}, #{replyUuidName,jdbcType=VARCHAR}, #{createDate,jdbcType=TIMESTAMP},#{releaseIdentity,jdbcType=VARCHAR},#{publishType,jdbcType=VARCHAR}
|
44
|
45
|
)
|
45
|
46
|
</insert>
|
46
|
47
|
<insert id="insertSelective" parameterType="com.community.huiju.model.TpTransactionReply" >
|