Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
25570 tejbeer 1
package com.spice.profitmandi.dao.model;
2
 
3
import java.util.List;
4
 
5
import com.spice.profitmandi.dao.enumuration.cs.EscalationType;
6
 
7
public class CreatePositionModel {
8
 
9
	private int authUserId;
10
	private int categoryId;
11
	private EscalationType escalationType;
12
	private int regionId;
13
	private List<Integer> fofoIds;
14
 
15
	public int getAuthUserId() {
16
		return authUserId;
17
	}
18
 
19
	public void setAuthUserId(int authUserId) {
20
		this.authUserId = authUserId;
21
	}
22
 
23
	public int getCategoryId() {
24
		return categoryId;
25
	}
26
 
27
	public void setCategoryId(int categoryId) {
28
		this.categoryId = categoryId;
29
	}
30
 
31
	public EscalationType getEscalationType() {
32
		return escalationType;
33
	}
34
 
35
	public void setEscalationType(EscalationType escalationType) {
36
		this.escalationType = escalationType;
37
	}
38
 
39
	public int getRegionId() {
40
		return regionId;
41
	}
42
 
43
	public void setRegionId(int regionId) {
44
		this.regionId = regionId;
45
	}
46
 
47
	public List<Integer> getFofoIds() {
48
		return fofoIds;
49
	}
50
 
51
	public void setFofoIds(List<Integer> fofoIds) {
52
		this.fofoIds = fofoIds;
53
	}
54
 
55
}