All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.zengtengpeng.autoCode.bean.BuildXmlBean Maven / Gradle / Ivy

There is a newer version: 2.1.6
Show newest version
package com.zengtengpeng.autoCode.bean;

import com.zengtengpeng.autoCode.enums.XmlElementType;

import java.util.Map;

public class BuildXmlBean {

    /**
     * xml的类型
     */
    private XmlElementType xmlElementType;

    /**
     * 属性
     */
    private Map attributes;

    /**
     * sql 文本
     */
    private String sql;

    public XmlElementType getXmlElementType() {
        return xmlElementType;
    }

    public void setXmlElementType(XmlElementType xmlElementType) {
        this.xmlElementType = xmlElementType;
    }

    public Map getAttributes() {
        return attributes;
    }

    public void setAttributes(Map attributes) {
        this.attributes = attributes;
    }

    public String getSql() {
        return sql;
    }

    public void setSql(String sql) {
        this.sql = sql;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy