Subversion Repositories SmartDukaan

Rev

Rev 9404 | Blame | Compare with Previous | Last modification | View Log | RSS feed

package inventory;


import in.shop2020.model.v1.catalog.status;

public class SnapdealItemForInventory {
        
        long id;
        long availability;
        long reserve;
        long heldForSource;
        long holdInventory;
        long defaultInventory;
        long totalHeldInventory;
        boolean isRisky;
        status Status;
        
        
        public SnapdealItemForInventory(long id,long availability,long reserve, long heldForSource, long holdInventory,long defaultInventory,long totalHeldInventory,boolean isRisky,status Status){
                this.id=id;
                this.availability=availability;
                this.reserve=reserve;
                this.heldForSource = heldForSource;
                this.holdInventory=holdInventory;
                this.defaultInventory=defaultInventory;
                this.totalHeldInventory=totalHeldInventory;
                this.isRisky=isRisky;
                this.Status=Status;
        }

        public long getId() {
                return id;
        }

        public void setId(long id) {
                this.id = id;
        }

        public long getAvailability() {
                return availability;
        }

        public void setAvailability(long availability) {
                this.availability = availability;
        }

        public long getReserve() {
                return reserve;
        }

        public void setReserve(long reserve) {
                this.reserve = reserve;
        }

        public long getHeldForSource() {
                return heldForSource;
        }

        public void setHeldForSource(long heldForSource) {
                this.heldForSource = heldForSource;
        }

        public long getHoldInventory() {
                return holdInventory;
        }

        public void setHoldInventory(long holdInventory) {
                this.holdInventory = holdInventory;
        }

        public long getDefaultInventory() {
                return defaultInventory;
        }

        public void setDefaultInventory(long defaultInventory) {
                this.defaultInventory = defaultInventory;
        }

        public boolean getRisky() {
                return isRisky;
        }

        public void setRisky(boolean isRisky) {
                this.isRisky = isRisky;
        }

        public status getStatus() {
                return Status;
        }

        public void setStatus(status status) {
                Status = status;
        }

        public long getTotalHeldInventory() {
                return totalHeldInventory;
        }

        public void setTotalHeldInventory(long totalHeldInventory) {
                this.totalHeldInventory = totalHeldInventory;
        }

        public boolean isRisky() {
                return isRisky;
        }
        
}