Subversion Repositories SmartDukaan

Rev

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.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", schema = "dtr")
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;
        }

        @Override
        public String toString() {
                return "RetailerBlockBrands [id=" + id + ", blockBrands=" + blockBrands + ", fofoId=" + fofoId + "]";
        }

}