Subversion Repositories SmartDukaan

Rev

Rev 31860 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 31860 Rev 35836
Line 32... Line 32...
32
 
32
 
33
	@Column(name = "versionname")
33
	@Column(name = "versionname")
34
	private String versionName;
34
	private String versionName;
35
 
35
 
36
	@Column(name = "osversion")
36
	@Column(name = "osversion")
37
	private int osVersion;
37
	private String osVersion;
38
 
38
 
39
	@Column(name = "imeinumber")
39
	@Column(name = "imeinumber")
40
	private String imeiNumber;
40
	private String imeiNumber;
41
 
41
 
42
	@Column(name = "androidid")
42
	@Column(name = "androidid")
Line 53... Line 53...
53
	
53
	
54
	//FCM ID
54
	//FCM ID
55
	@Column(name = "gcm_regid")
55
	@Column(name = "gcm_regid")
56
	private String fcmId;
56
	private String fcmId;
57
 
57
 
58
	//UNUSED
-
 
59
	@Column(name = "notification_type")
58
	@Column(name = "notification_type")
60
	private String notificationType;
59
	private String notificationType;
61
 
60
 
62
	public String getFcmId() {
61
	public String getFcmId() {
63
		return fcmId;
62
		return fcmId;
Line 65... Line 64...
65
 
64
 
66
	public void setFcmId(String gcmRegid) {
65
	public void setFcmId(String gcmRegid) {
67
		this.fcmId = gcmRegid;
66
		this.fcmId = gcmRegid;
68
	}
67
	}
69
 
68
 
-
 
69
	public String getNotificationType() {
-
 
70
		return notificationType;
-
 
71
	}
-
 
72
 
-
 
73
	public void setNotificationType(String notificationType) {
-
 
74
		this.notificationType = notificationType;
-
 
75
	}
-
 
76
 
70
 
77
 
71
	@Convert(converter = LocalDateTimeAttributeConverter.class)
78
	@Convert(converter = LocalDateTimeAttributeConverter.class)
72
	@Column(name = "created", updatable = false)
79
	@Column(name = "created", updatable = false)
73
	private LocalDateTime created = LocalDateTime.now();
80
	private LocalDateTime created = LocalDateTime.now();
74
 
81
 
Line 110... Line 117...
110
 
117
 
111
	public void setVersionName(String versionName) {
118
	public void setVersionName(String versionName) {
112
		this.versionName = versionName;
119
		this.versionName = versionName;
113
	}
120
	}
114
 
121
 
115
	public int getOsVersion() {
122
	public String getOsVersion() {
116
		return osVersion;
123
		return osVersion;
117
	}
124
	}
118
 
125
 
119
	public void setOsVersion(int osVersion) {
126
	public void setOsVersion(String osVersion) {
120
		this.osVersion = osVersion;
127
		this.osVersion = osVersion;
121
	}
128
	}
122
 
129
 
123
	public String getImeiNumber() {
130
	public String getImeiNumber() {
124
		return imeiNumber;
131
		return imeiNumber;