小程序动态增加类型

This commit is contained in:
shuo.wang
2025-06-23 18:37:56 +08:00
parent 2c8061f532
commit 7eee2969e8
2 changed files with 3 additions and 1 deletions

View File

@@ -6,7 +6,8 @@ package com.cool.store.enums;
public enum ContentSubjectEnum {
HY_CULTURE("沪姨文化"),
PARTNER_SAYS("加盟商说"),
BRAND_NEWS("品牌动态")
BRAND_NEWS("品牌动态"),
MINI_PRE_FRIED("小程序预炸产品")
;
private String subjectName;

View File

@@ -201,6 +201,7 @@
<if test="endTime != null and endTime != ''">
and update_time &lt;= #{endTime}
</if>
and subject != 'MINI_PRE_FRIED'
order by update_time desc
</select>