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


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