ava-pojo-generator.1.3.6.source-code.pojo.mustache Maven / Gradle / Ivy
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