Rev 30683 | Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.dao.entity.catalog;import javax.persistence.Column;import javax.persistence.Entity;import javax.persistence.GeneratedValue;import javax.persistence.GenerationType;import javax.persistence.Id;import javax.persistence.Table;import javax.persistence.Transient;@Entity@Table(name = "catalog.mapped_combo_model")public class ComboMappedModel {@Id@Column(name = "id", columnDefinition = "int(11)")@GeneratedValue(strategy = GenerationType.IDENTITY)private int id;@Column(name = "mapped_catalog_id")private int comboCatalogId;@Column(name = "mapped_qty")private int comboQty;@Column(name = "combo_id")private int comboId;@Transientprivate String itemDescription;public int getId() {return id;}public void setId(int id) {this.id = id;}public int getComboCatalogId() {return comboCatalogId;}public void setComboCatalogId(int comboCatalogId) {this.comboCatalogId = comboCatalogId;}public int getComboQty() {return comboQty;}public void setComboQty(int comboQty) {this.comboQty = comboQty;}public int getComboId() {return comboId;}public void setComboId(int comboId) {this.comboId = comboId;}public String getItemDescription() {return itemDescription;}public void setItemDescription(String itemDescription) {this.itemDescription = itemDescription;}@Overridepublic String toString() {return "ComboMappedModel [id=" + id + ", comboCatalogId=" + comboCatalogId + ", comboQty=" + comboQty+ ", comboId=" + comboId + ", itemDescription=" + itemDescription + "]";}}