package com.minosis.hibernate; import com.minosis.hibernate.base.BaseTContact; /** * This is the object class that relates to the T_contact table. * Any customizations belong here. */ public class TContact extends BaseTContact { /*[CONSTRUCTOR MARKER BEGIN]*/ public TContact () { super(); } /** * Constructor for primary key */ public TContact (java.lang.Integer _id) { super(_id); } /*[CONSTRUCTOR MARKER END]*/ }