package database.in; public class GetProductInfo { //private variables String _product_sku; int _product_Id; String _product_Name; String _thumbnail_image; String _product_Disciption; float _product_weight; String _product_Created_At; String _product_Updated_At; float _product_Price; float _product_special_price; int _product_tax_id; String _product_cat_id; String _product_cat_name; // Empty constructor public GetProductInfo(){ } // constructor public GetProductInfo(String product_sku, int product_Id,String product_Name, String thumbnail_image,String product_Disciption,float product_weight,String product_Created_At,String product_Updated_At,float product_Price,float product_special_price,int product_tax_id,String product_cat_id,String product_cat_name){ this._product_sku = product_sku; this._product_Id = product_Id; this._product_Name = product_Name; this._thumbnail_image=thumbnail_image; this._product_Disciption=product_Disciption; this._product_weight=product_weight; this._product_Created_At=product_Created_At; this._product_Price=product_Price; this._product_special_price=product_special_price; this._product_tax_id=product_tax_id; this._product_cat_id=product_cat_id; this._product_cat_name=product_cat_name; } public String getProductSku(){ return this._product_sku; } public void setProductSku(String product_sku){ this._product_sku=product_sku; } public int getProductID(){ return this._product_Id; } public void setProductID(int product_Id){ this._product_Id=product_Id; } public String getProductName(){ return this._product_Name; } public void setProductName(String product_Name){ this._product_Name=product_Name; } public String getThumbnail(){ return this._thumbnail_image; } public void setThumbnail(String thumbnail_image){ this._thumbnail_image=thumbnail_image; } public String getProductDiscription(){ return this._product_Disciption; } public void setProductDiscription(String product_Disciption){ this._product_Disciption=product_Disciption; } public float getProductWeight(){ return this._product_weight; } public void setProductWeight(float f){ this._product_weight=f; } public String getProductCreatedAt(){ return this._product_Created_At; } public void setProductCreatedAt(String product_Created_At){ this._product_Created_At=product_Created_At; } public String getProductUpdatedAt(){ return this._product_Updated_At; } public void setProductUpdatedAt(String product_Updated_At){ this._product_Updated_At=product_Updated_At; } public float getProductPrice(){ return this._product_Price; } public void setProductPrice(float f ){ this._product_Price=f; } public float getProductSpecialPrice(){ return this._product_special_price; } public void setProductSpecialPrice(float f){ this._product_special_price=f; } public int getProductTexId(){ return this._product_tax_id; } public void setProductTexId(int product_tax_id){ this._product_tax_id=product_tax_id; } public String getProductCategoryId(){ return this._product_cat_id; } public void setProductCategoryId(String product_cat_id){ this._product_cat_id=product_cat_id; } public String getProductCategoryName(){ return this._product_cat_name; } public void setProductCategoryName(String product_cat_name){ this._product_cat_name=product_cat_name; } }