rbatis_codegen/codegen/syntax_tree_pysql/foreach_node.rs
use crate::codegen::syntax_tree_pysql::{Name, NodeType};
#[derive(Clone, Debug, Eq, PartialEq)]
pub struct ForEachNode {
    pub childs: Vec<NodeType>,
    pub collection: String,
    pub index: String,
    pub item: String,
}
impl Name for ForEachNode {
    fn name() -> &'static str {
        "for"
    }
}