Commit 0e870168d08250746de7a16d6e1a24d803225b57
1 parent
6426204c
解决 issues/I1VN0E缺少表结构eoa_mailbox_info
Showing
2 changed files
with
2 additions
and
8 deletions
jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/system/mapper/xml/SysAnnouncementSendMapper.xml
@@ -15,7 +15,6 @@ | @@ -15,7 +15,6 @@ | ||
15 | <result column="bus_id" property="busId" jdbcType="VARCHAR"/> | 15 | <result column="bus_id" property="busId" jdbcType="VARCHAR"/> |
16 | <result column="open_type" property="openType" jdbcType="VARCHAR"/> | 16 | <result column="open_type" property="openType" jdbcType="VARCHAR"/> |
17 | <result column="open_page" property="openPage" jdbcType="VARCHAR"/> | 17 | <result column="open_page" property="openPage" jdbcType="VARCHAR"/> |
18 | - <result column="email_title" property="emailTitle" jdbcType="VARCHAR"/> | ||
19 | </resultMap> | 18 | </resultMap> |
20 | 19 | ||
21 | <select id="queryByUserId" parameterType="String" resultType="String"> | 20 | <select id="queryByUserId" parameterType="String" resultType="String"> |
@@ -38,11 +37,9 @@ | @@ -38,11 +37,9 @@ | ||
38 | sa.bus_id as bus_id, | 37 | sa.bus_id as bus_id, |
39 | sa.open_type as open_type, | 38 | sa.open_type as open_type, |
40 | sa.open_page as open_page, | 39 | sa.open_page as open_page, |
41 | - sa.msg_abstract, | ||
42 | - emi.title as email_title | 40 | + sa.msg_abstract |
43 | from sys_announcement_send sas | 41 | from sys_announcement_send sas |
44 | left join sys_announcement sa ON sas.annt_id = sa.id | 42 | left join sys_announcement sa ON sas.annt_id = sa.id |
45 | - left join eoa_mailbox_info emi ON emi.id = sa.bus_id | ||
46 | where sa.send_status = '1' | 43 | where sa.send_status = '1' |
47 | and sa.del_flag = '0' | 44 | and sa.del_flag = '0' |
48 | and sas.user_id = #{announcementSendModel.userId} | 45 | and sas.user_id = #{announcementSendModel.userId} |
jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/system/model/AnnouncementSendModel.java
@@ -76,8 +76,5 @@ public class AnnouncementSendModel implements Serializable { | @@ -76,8 +76,5 @@ public class AnnouncementSendModel implements Serializable { | ||
76 | * 摘要 | 76 | * 摘要 |
77 | */ | 77 | */ |
78 | private java.lang.String msgAbstract; | 78 | private java.lang.String msgAbstract; |
79 | - /** | ||
80 | - * 邮箱标题 | ||
81 | - */ | ||
82 | - private java.lang.String emailTitle; | 79 | + |
83 | } | 80 | } |