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

ava-pojo-generator.1.3.6.source-code.pojo.mustache Maven / Gradle / Ivy

There is a newer version: 1.3.8
Show newest version
package {{package}};

/** {{rawTable.remarks}}
    {{rawTable.tableCat}}.{{rawTable.tableSchem}}.{{rawTable.tableName}}{{#generationInfo}}

    {{generationInfo}}{{/generationInfo}}
*/
public class {{className}} {
    {{#properties}}

    /** {{rawColumn.remarks}}
        {{rawColumn.columnName}} {{rawColumn.typeName}}({{rawColumn.columnSize}}) Nullable={{rawColumn.isNullable}}
    */
    private {{propertyType}} {{propertyName}};
    {{/properties}}
    {{#properties}}

    public {{propertyType}} get{{methodName}}() {
        return {{propertyName}};
    }

    public void set{{methodName}}({{propertyType}} {{propertyName}}) {
        this.{{propertyName}} = {{propertyName}};
    }

    {{/properties}}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy