Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
27417 tejbeer 1
package com.spice.profitmandi.dao.entity.dtr;
2
 
3
public class HyperTrackKeyModel {
4
 
5
	private int userId;
6
	private int deviceId;
7
	private String hyperTrackId;
8
 
9
	public int getUserId() {
10
		return userId;
11
	}
12
 
13
	public void setUserId(int userId) {
14
		this.userId = userId;
15
	}
16
 
17
	public int getDeviceId() {
18
		return deviceId;
19
	}
20
 
21
	public void setDeviceId(int deviceId) {
22
		this.deviceId = deviceId;
23
	}
24
 
25
	public String getHyperTrackId() {
26
		return hyperTrackId;
27
	}
28
 
29
	public void setHyperTrackId(String hyperTrackId) {
30
		this.hyperTrackId = hyperTrackId;
31
	}
32
 
33
}