Skip to content

Instantly share code, notes, and snippets.

@srdelarosa
Created March 19, 2021 01:34
Show Gist options
  • Save srdelarosa/af8d51aade87fcfe43ef4fc099963481 to your computer and use it in GitHub Desktop.
Save srdelarosa/af8d51aade87fcfe43ef4fc099963481 to your computer and use it in GitHub Desktop.
package com.newhorizons.takeitnow.products.application.mainmodule.dto;
public class ProductDto {
private Long productId;
private String description;
private Double price;
public Long getProductId() {
return productId;
}
public void setProductId(Long productId) {
this.productId = productId;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public Double getPrice() {
return price;
}
public void setPrice(Double price) {
this.price = price;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment