文档订阅--编辑时发消息
This commit is contained in:
+4
@@ -157,4 +157,8 @@ public class SysAnnouncement implements Serializable {
|
||||
* 发起人
|
||||
*/
|
||||
private java.lang.String initiator;
|
||||
|
||||
private java.lang.String msgContentCn;//消息的中文(不带标签)
|
||||
|
||||
private java.lang.String msgContentInfoCn;//消息的中文(带标签)
|
||||
}
|
||||
|
||||
+5
-1
@@ -18,6 +18,8 @@
|
||||
<result column="open_page" property="openPage" jdbcType="VARCHAR"/>
|
||||
<result column="document_id" property="documentId" jdbcType="VARCHAR"/>
|
||||
<result column="initiator" property="initiator" jdbcType="VARCHAR"/>
|
||||
<result column="msg_content_cn" property="msgContentCn" jdbcType="VARCHAR"/>
|
||||
<result column="msg_content_info_cn" property="msgContentInfoCn" jdbcType="VARCHAR"/>
|
||||
</resultMap>
|
||||
|
||||
<select id="queryByUserId" parameterType="String" resultType="String">
|
||||
@@ -43,7 +45,9 @@
|
||||
sa.open_page as open_page,
|
||||
sa.msg_abstract,
|
||||
sa.document_id as document_id,
|
||||
sa.initiator as initiator
|
||||
sa.initiator as initiator,
|
||||
sa.msg_content_cn as msg_content_cn,
|
||||
sa.msg_content_info_cn as msg_content_info_cn
|
||||
from sys_announcement_send sas
|
||||
left join sys_announcement sa ON sas.annt_id = sa.id
|
||||
where sa.del_flag = '0'
|
||||
|
||||
+4
@@ -87,4 +87,8 @@ public class AnnouncementSendModel implements Serializable {
|
||||
*/
|
||||
private java.lang.String initiator;
|
||||
|
||||
private java.lang.String msgContentCn;//消息的中文(不带标签)
|
||||
|
||||
private java.lang.String msgContentInfoCn;//消息的中文(带标签)
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user