package org.apache.cayenne.testdo.numeric_types.auto; import org.apache.cayenne.CayenneDataObject; import org.apache.cayenne.exp.Property; /** * Class _BitNumberTestEntity 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 _BitNumberTestEntity extends CayenneDataObject { private static final long serialVersionUID = 1L; public static final String ID_PK_COLUMN = "ID"; public static final Property<Integer> BIT_COLUMN = Property.create("bitColumn", Integer.class); public void setBitColumn(Integer bitColumn) { writeProperty("bitColumn", bitColumn); } public Integer getBitColumn() { return (Integer)readProperty("bitColumn"); } }