```
addpost {
bind {
title = "$input.post_title"
content = "$input.post_content"
user_id = "$input.post_user"
}
exec = <<SQL
INSERT INTO posts(user_id, title, content) VALUES(:user_id, :title, :content);
SELECT * FROM posts WHERE id = LAST_INSERT_ID();
SQL
}
```
navicat里面调好sql 然后贴到模板里,golang只需要传参就可以,简单的func调用 ,不用SRM,也不用各种奇奇怪怪的buider丑陋的写法
简单直接
有疑问加站长微信联系(非本文作者)