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.model;

import java.util.List;

import com.spice.profitmandi.dao.enumuration.cs.EscalationType;

public class CreatePositionModel {

        private int authUserId;
        private int categoryId;
        private EscalationType escalationType;
        private int regionId;
        private List<Integer> fofoIds;

        public int getAuthUserId() {
                return authUserId;
        }

        public void setAuthUserId(int authUserId) {
                this.authUserId = authUserId;
        }

        public int getCategoryId() {
                return categoryId;
        }

        public void setCategoryId(int categoryId) {
                this.categoryId = categoryId;
        }

        public EscalationType getEscalationType() {
                return escalationType;
        }

        public void setEscalationType(EscalationType escalationType) {
                this.escalationType = escalationType;
        }

        public int getRegionId() {
                return regionId;
        }

        public void setRegionId(int regionId) {
                this.regionId = regionId;
        }

        public List<Integer> getFofoIds() {
                return fofoIds;
        }

        public void setFofoIds(List<Integer> fofoIds) {
                this.fofoIds = fofoIds;
        }

}