Subversion Repositories SmartDukaan

Rev

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

Rev 25301 Rev 25306
Line 54... Line 54...
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
58
	//UNUSED
59
	@Column(name = "failurecount")
-
 
60
	private int failurecount;
-
 
61
 
-
 
62
	//UNUSED
-
 
63
	@Column(name = "notification_type")
59
	@Column(name = "notification_type")
64
	private String notificationType;
60
	private String notificationType;
65
 
61
 
66
	public String getFcmId() {
62
	public String getFcmId() {
67
		return fcmId;
63
		return fcmId;
Line 75... Line 71...
75
	@Convert(converter = LocalDateTimeAttributeConverter.class)
71
	@Convert(converter = LocalDateTimeAttributeConverter.class)
76
	@Column(name = "created", updatable = false)
72
	@Column(name = "created", updatable = false)
77
	private LocalDateTime created = LocalDateTime.now();
73
	private LocalDateTime created = LocalDateTime.now();
78
 
74
 
79
	@Convert(converter = LocalDateTimeAttributeConverter.class)
75
	@Convert(converter = LocalDateTimeAttributeConverter.class)
80
	@Column(name = "modified", updatable = true)
76
	@Column(name = "modified", updatable=true)
81
	private LocalDateTime modified = LocalDateTime.now();
77
	private LocalDateTime modified = LocalDateTime.now();
82
 
78
 
83
	public int getId() {
79
	public int getId() {
84
		return id;
80
		return id;
85
	}
81
	}