Rev 27081 | 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 java.io.Serializable;import java.time.LocalDateTime;import javax.persistence.Column;import javax.persistence.Entity;import javax.persistence.Id;import javax.persistence.Table;@Entity@Table(name = "catalog.focused_model", schema = "catalog")public class FocusedModel implements Serializable {private static final long serialVersionUID = 1L;@Id@Column(name = "catalog_id", columnDefinition = "int(11)")private int catalogId;@Column(name = "recommended_qty")private int recommendedQty;@Column(name = "minimum_qty")private int minimumQty;@Column(name = "created_timestamp")private LocalDateTime createdTimestamp;public int getCatalogId() {return catalogId;}public LocalDateTime getCreatedTimestamp() {return createdTimestamp;}public void setCreatedTimestamp(LocalDateTime createdTimestamp) {this.createdTimestamp = createdTimestamp;}public void setCatalogId(int catalogId) {this.catalogId = catalogId;}public int getRecommendedQty() {return recommendedQty;}public void setRecommendedQty(int recommendedQty) {this.recommendedQty = recommendedQty;}public int getMinimumQty() {return minimumQty;}public void setMinimumQty(int minimumQty) {this.minimumQty = minimumQty;}public static long getSerialversionuid() {return serialVersionUID;}@Overridepublic String toString() {return "FocusedModel [catalogId=" + catalogId + ", recommendedQty=" + recommendedQty + ", minimumQty="+ minimumQty + ", createdTimestamp=" + createdTimestamp + "]";}}