Rev 11788 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
package in.shop2020.metamodel.util;public class PrivateDealPojo {private Long itemId;private String dealText;private Boolean isCod;private Double dealPrice;public Long getItemId() {return itemId;}public void setItemId(Long itemId) {this.itemId = itemId;}public String getDealText() {return dealText;}public void setDealText(String dealText) {this.dealText = dealText;}public Boolean getIsCod() {return isCod;}public void setIsCod(Boolean isCod) {this.isCod = isCod;}public Double getDealPrice() {return dealPrice;}public void setDealPrice(Double dealPrice) {this.dealPrice = dealPrice;}}