*/
public class TagController extends ApplicationController {
@At(path = "/tag", types = {RestRequest.Method.POST})
public void save() {
Tag tag = Tag.create(params());
if (tag.save()) {
render(200, "成功", ViewType.string);
}
render(400, "失败", ViewType.string);
}