www.pudn.com > PetTest.rar > Pet.java


package bo; 
 
import bo.base.BasePet; 
 
/** 
 * This is the object class that relates to the pet table. 
 * Any customizations belong here. 
 */ 
public class Pet extends BasePet { 
 
/*[CONSTRUCTOR MARKER BEGIN]*/ 
	public Pet () { 
		super(); 
	} 
 
	/** 
	 * Constructor for primary key 
	 */ 
	public Pet (java.lang.Integer _petid) { 
		super(_petid); 
	} 
 
	/** 
	 * Constructor for required fields 
	 */ 
	public Pet ( 
		java.lang.Integer _petid, 
		bo.Owner _ownerid) { 
 
		super ( 
			_petid, 
			_ownerid); 
	} 
/*[CONSTRUCTOR MARKER END]*/ 
}