Rev 28024 | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.dao.entity.dtr;import javax.persistence.Column;import javax.persistence.Entity;import javax.persistence.GeneratedValue;import javax.persistence.GenerationType;import javax.persistence.Id;import javax.persistence.Table;@Entity@Table(name = "dtr.retailer_block_brands")public class RetailerBlockBrands {@Id@Column(name = "id", unique = false, updatable = false)@GeneratedValue(strategy = GenerationType.IDENTITY)private int id;@Column(name = "block_brands")private String blockBrands;@Column(name = "fofo_id")private int fofoId;public int getFofoId() {return fofoId;}public int getId() {return id;}public void setId(int id) {this.id = id;}public void setFofoId(int fofoId) {this.fofoId = fofoId;}public String getBlockBrands() {return blockBrands;}public void setBlockBrands(String blockBrands) {this.blockBrands = blockBrands;}@Overridepublic String toString() {return "RetailerBlockBrands [id=" + id + ", blockBrands=" + blockBrands + ", fofoId=" + fofoId + "]";}}