会员同步消息修改

This commit is contained in:
liangqitao
2021-12-20 16:24:17 +08:00
parent 029813b1d6
commit d08ecb8b07
4 changed files with 16 additions and 9 deletions
@@ -154,4 +154,8 @@ public class SysAnnouncement implements Serializable {
*/
@TableField(exist = false)
private String phone;
/**
* 跳转参数
*/
private String jumpParameter;
}
@@ -15,6 +15,7 @@
<result column="bus_id" property="busId" jdbcType="VARCHAR"/>
<result column="open_type" property="openType" jdbcType="VARCHAR"/>
<result column="open_page" property="openPage" jdbcType="VARCHAR"/>
<result column="jump_parameter" property="jumpParameter" jdbcType="VARCHAR"/>
</resultMap>
<select id="queryByUserId" parameterType="String" resultType="String">
@@ -38,7 +39,8 @@
sa.open_type as open_type,
sa.open_page as open_page,
sa.msg_abstract,
sa.template_code
sa.template_code,
sa.jump_parameter
from sys_announcement_send sas
left join sys_announcement sa ON sas.annt_id = sa.id
where sa.send_status = '1'
@@ -1,16 +1,13 @@
package com.jero.modules.system.model;
import java.io.Serializable;
import com.jero.common.aspect.annotation.Dict;
import org.springframework.format.annotation.DateTimeFormat;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.jero.common.aspect.annotation.Dict;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
import java.io.Serializable;
/**
* @Description: 用户通告阅读标记表
@@ -91,4 +88,8 @@ public class AnnouncementSendModel implements Serializable {
* 结束时间
*/
private String endTime;
/**
* 跳转参数
*/
private String jumpParameter;
}