Subversion Repositories SmartDukaan

Rev

Rev 25570 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 25570 Rev 31762
Line 4... Line 4...
4
 
4
 
5
import com.spice.profitmandi.dao.enumuration.cs.EscalationType;
5
import com.spice.profitmandi.dao.enumuration.cs.EscalationType;
6
 
6
 
7
public class CreatePositionModel {
7
public class CreatePositionModel {
8
 
8
 
9
	private int authUserId;
9
    private int authUserId;
10
	private int categoryId;
10
    private int categoryId;
11
	private EscalationType escalationType;
11
    private EscalationType escalationType;
12
	private int regionId;
12
    private int regionId;
13
	private List<Integer> fofoIds;
13
    private List<Integer> fofoIds;
-
 
14
 
-
 
15
    private boolean ticketAssigned;
-
 
16
 
-
 
17
 
-
 
18
    public boolean isTicketAssigned() {
-
 
19
        return ticketAssigned;
-
 
20
    }
-
 
21
 
-
 
22
    public void setTicketAssigned(boolean ticketAssigned) {
-
 
23
        this.ticketAssigned = ticketAssigned;
-
 
24
    }
14
 
25
 
15
	public int getAuthUserId() {
26
    public int getAuthUserId() {
16
		return authUserId;
27
        return authUserId;
17
	}
28
    }
18
 
29
 
19
	public void setAuthUserId(int authUserId) {
30
    public void setAuthUserId(int authUserId) {
20
		this.authUserId = authUserId;
31
        this.authUserId = authUserId;
21
	}
32
    }
22
 
33
 
23
	public int getCategoryId() {
34
    public int getCategoryId() {
24
		return categoryId;
35
        return categoryId;
25
	}
36
    }
26
 
37
 
27
	public void setCategoryId(int categoryId) {
38
    public void setCategoryId(int categoryId) {
28
		this.categoryId = categoryId;
39
        this.categoryId = categoryId;
29
	}
40
    }
30
 
41
 
31
	public EscalationType getEscalationType() {
42
    public EscalationType getEscalationType() {
32
		return escalationType;
43
        return escalationType;
33
	}
44
    }
34
 
45
 
35
	public void setEscalationType(EscalationType escalationType) {
46
    public void setEscalationType(EscalationType escalationType) {
36
		this.escalationType = escalationType;
47
        this.escalationType = escalationType;
37
	}
48
    }
38
 
49
 
39
	public int getRegionId() {
50
    public int getRegionId() {
40
		return regionId;
51
        return regionId;
41
	}
52
    }
42
 
53
 
43
	public void setRegionId(int regionId) {
54
    public void setRegionId(int regionId) {
44
		this.regionId = regionId;
55
        this.regionId = regionId;
45
	}
56
    }
46
 
57
 
47
	public List<Integer> getFofoIds() {
58
    public List<Integer> getFofoIds() {
48
		return fofoIds;
59
        return fofoIds;
49
	}
60
    }
50
 
61
 
51
	public void setFofoIds(List<Integer> fofoIds) {
62
    public void setFofoIds(List<Integer> fofoIds) {
52
		this.fofoIds = fofoIds;
63
        this.fofoIds = fofoIds;
53
	}
64
    }
54
 
65
 
55
}
66
}