This commit is contained in:
sxu 2024-12-23 11:07:09 +08:00
parent 48d9ebf531
commit 73e4f593fe
2 changed files with 3 additions and 0 deletions

View File

@ -72,6 +72,8 @@ public class MaterialConstants {
public static final Integer APPENDICES_OF_CONTRACT = 20; //move to TmTaskTypeEnum public static final Integer APPENDICES_OF_CONTRACT = 20; //move to TmTaskTypeEnum
public static final String CACHE_MATERIAL_MALL_MESSAGE = "material-mall-message:"; public static final String CACHE_MATERIAL_MALL_MESSAGE = "material-mall-message:";
public static final String MESSAGE_FROM = "FROM:";
public static final String MESSAGE_TO = "TO:";
public static final Long CACHE_MATERIAL_MALL_MESSAGE_HOURS = 24L; public static final Long CACHE_MATERIAL_MALL_MESSAGE_HOURS = 24L;
} }

View File

@ -31,6 +31,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="messageTopic != null and messageTopic != ''"> and message_topic = #{messageTopic}</if> <if test="messageTopic != null and messageTopic != ''"> and message_topic = #{messageTopic}</if>
<if test="messageType != null and messageType != ''"> and message_type = #{messageType}</if> <if test="messageType != null and messageType != ''"> and message_type = #{messageType}</if>
</where> </where>
order by create_time
</select> </select>
<select id="selectBmMessageById" parameterType="Long" resultMap="BmMessageResult"> <select id="selectBmMessageById" parameterType="Long" resultMap="BmMessageResult">