Subversion Repositories SmartDukaan

Rev

Rev 29657 | 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.Id;
import javax.persistence.Table;

@Entity
@Table(name = "catalog.samsung_sp_qty")
public class SamsungSpQty {

        @Id
        @Column(name = "fofo_id")
        private int fofoId;

        @Column(name = "quantity")
        private int quantity;

        public int getFofoId() {
                return fofoId;
        }

        public void setFofoId(int fofoId) {
                this.fofoId = fofoId;
        }

        public int getQuantity() {
                return quantity;
        }

        public void setQuantity(int quantity) {
                this.quantity = quantity;
        }

        @Override
        public String toString() {
                return "SamsungSpQty [fofoId=" + fofoId + ", quantity=" + quantity + "]";
        }

}