You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<#assign triggerName = "trigger_${id}">
drop trigger if exists ${triggerName}
create trigger ${triggerName}
after update
on customer
for each row
begin
if old.grade <> new.grade THEN
...
end if;
end;
几百年前用过。 这次要用他来生成trigger。。
POM依赖
Spring Boot & Freemarker Configuration Example
pom.xml
FreemarkerConfig.java
Configuration
模板 ftl
src/main/resources/freemarker/niubi.ftl
Service/Utils
Test
The text was updated successfully, but these errors were encountered: