Commit 2af41057 authored by 1516160's avatar 1516160

Upload New File

parent 42db0169
package com.altimetrik.playground.candidate.assessment.request;
public class ProductReq {
private String email;
private String prodname;
private int prodId;
private double price;
private int quantity;
public String getProdname() {
return prodname;
}
public void setProdname(String prodname) {
this.prodname = prodname;
}
public int getProdId() {
return prodId;
}
public void setProdId(int prodId) {
this.prodId = prodId;
}
public double getPrice() {
return price;
}
public void setPrice(double price) {
this.price = price;
}
public int getQuantity() {
return quantity;
}
public void setQuantity(int quantity) {
this.quantity = quantity;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment