策略配置-时间配置字段修改

This commit is contained in:
2025-07-13 15:02:00 +08:00
parent 819e4cd3a7
commit a0b83fc8a4
3 changed files with 12 additions and 1 deletions

View File

@ -101,10 +101,13 @@
t.template_id as templateId,
temp.template_name as templateName
from ems_strategy_time_config t
LEFT JOIN ems_strategy_temp temp on t.template_id = temp.id
LEFT JOIN ems_strategy_temp temp on t.template_id = temp.template_id
where t.site_id = #{siteId}
and t.strategy_id = #{strategyId}
order by month
</select>
<delete id="deleteTimeConfigByTemplateId" parameterType="String">
delete from ems_strategy_time_config where template_id = #{templateId}
</delete>
</mapper>