Update CalendarRewardClaimed.java

This commit is contained in:
brenoepics 2022-03-23 17:50:32 -03:00
parent 287af8aba4
commit 8eacb5b977

View File

@ -16,7 +16,7 @@ public class CalendarRewardClaimed {
this.campaign = set.getInt("campaign_id");
this.day = set.getInt("day");
this.reward_id = set.getInt("reward_id");
this.timestamp = set.getTimestamp("timestamp");
this.timestamp = new Timestamp(set.getInt("timestamp") * 1000L);
}
public CalendarRewardClaimed(int user_id, int campaign, int day, int reward_id, Timestamp timestamp) {