// Source code recreated from a .class file by IntelliJ IDEA
// (powered by FernFlower decompiler)
import java.math.BigDecimal;
private final String itemCd;
private final String itemNm;
private final String ctgId;
private final BigDecimal price;
private final String sellTypeCd;
Item(String itemCd, String itemNm, String ctgId, BigDecimal price, String sellTypeCd) {
this.sellTypeCd = sellTypeCd;
public static Item.ItemBuilder builder() {
return new Item.ItemBuilder();
public static class ItemBuilder {
private BigDecimal price;
private String sellTypeCd;
public Item.ItemBuilder itemCd(String itemCd) {
public Item.ItemBuilder itemNm(String itemNm) {
public Item.ItemBuilder ctgId(String ctgId) {
public Item.ItemBuilder price(BigDecimal price) {
public Item.ItemBuilder sellTypeCd(String sellTypeCd) {
this.sellTypeCd = sellTypeCd;
return new Item(this.itemCd, this.itemNm, this.ctgId, this.price, this.sellTypeCd);
public String toString() {
return "Item.ItemBuilder(itemCd=" + this.itemCd + ", itemNm=" + this.itemNm + ", ctgId=" + this.ctgId + ", price=" + this.price + ", sellTypeCd=" + this.sellTypeCd + ")";