Hi,
I have a table which defines the primary key like this:
<composite-id name="id" class="com.tl.database.CosiAccountsId">
<key-property name="simid" type="java.lang.Long">
<column name="simid" />
</key-property>
<key-property name="accno" type="java.lang.String">
<column name="accno" length="9" />
</key-property>
</composite-id>
The created POJO does not give access to these 2 fields. What am I doing wrong?
Thanks for your help
Klaus