package org.apache.cayenne.testdo.numeric_types.auto; import org.apache.cayenne.CayenneDataObject; import org.apache.cayenne.exp.Property; /** * Class _DecimalPKTest1 was generated by Cayenne. * It is probably a good idea to avoid changing this class manually, * since it may be overwritten next time code is regenerated. * If you need to make any customizations, please use subclass. */ public abstract class _DecimalPKTest1 extends CayenneDataObject { private static final long serialVersionUID = 1L; public static final String DECIMAL_PK_PK_COLUMN = "DECIMAL_PK"; public static final Property<Double> DECIMAL_PK = Property.create("decimalPK", Double.class); public static final Property<String> NAME = Property.create("name", String.class); public void setDecimalPK(Double decimalPK) { writeProperty("decimalPK", decimalPK); } public Double getDecimalPK() { return (Double)readProperty("decimalPK"); } public void setName(String name) { writeProperty("name", name); } public String getName() { return (String)readProperty("name"); } }