Subversion Repositories SmartDukaan

Rev

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

Rev 31860 Rev 33952
Line 77... Line 77...
77
	private LocalDateTime createTimestamp;
77
	private LocalDateTime createTimestamp;
78
 
78
 
79
	@Column
79
	@Column
80
	private boolean checked = false;
80
	private boolean checked = false;
81
 
81
 
-
 
82
	@Column(name = "auth_id")
-
 
83
	private int authId;
-
 
84
 
82
	public ActivatedImei() {
85
	public ActivatedImei() {
83
		super();
86
		super();
84
	}
87
	}
85
 
88
 
86
	public ActivatedImei(String serialNumber, LocalDateTime activationTimestamp) {
89
	public ActivatedImei(String serialNumber, LocalDateTime activationTimestamp) {
Line 110... Line 113...
110
 
113
 
111
	public void setCreateTimestamp(LocalDateTime createTimestamp) {
114
	public void setCreateTimestamp(LocalDateTime createTimestamp) {
112
		this.createTimestamp = createTimestamp;
115
		this.createTimestamp = createTimestamp;
113
	}
116
	}
114
 
117
 
-
 
118
	public int getAuthId() {
-
 
119
		return authId;
-
 
120
	}
-
 
121
 
-
 
122
	public void setAuthId(int authId) {
-
 
123
		this.authId = authId;
-
 
124
	}
-
 
125
 
115
	@Override
126
	@Override
116
	public String toString() {
127
	public String toString() {
117
		return "ActivatedImei{" +
128
		return "ActivatedImei{" +
118
				"serialNumber='" + serialNumber + '\'' +
129
				"serialNumber='" + serialNumber + '\'' +
119
				", activationTimestamp=" + activationTimestamp +
130
				", activationTimestamp=" + activationTimestamp +
120
				", createTimestamp=" + createTimestamp +
131
				", createTimestamp=" + createTimestamp +
121
				", checked=" + checked +
132
				", checked=" + checked +
-
 
133
				", authId=" + authId +
122
				'}';
134
				'}';
123
	}
135
	}
124
 
136
 
125
	@Override
137
	@Override
126
	public boolean equals(Object o) {
138
	public boolean equals(Object o) {