mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
49 lines
745 B
Java
49 lines
745 B
Java
package org.tests.model.rawsql;
|
|
|
|
import io.ebean.annotation.Sql;
|
|
|
|
import javax.persistence.Entity;
|
|
import java.time.LocalDate;
|
|
|
|
@Entity
|
|
@Sql
|
|
public class ERawSqlAggBean {
|
|
|
|
LocalDate day;
|
|
long total;
|
|
int scheduled;
|
|
int completed;
|
|
|
|
public LocalDate getDay() {
|
|
return day;
|
|
}
|
|
|
|
public void setDay(LocalDate day) {
|
|
this.day = day;
|
|
}
|
|
|
|
public long getTotal() {
|
|
return total;
|
|
}
|
|
|
|
public void setTotal(long total) {
|
|
this.total = total;
|
|
}
|
|
|
|
public int getScheduled() {
|
|
return scheduled;
|
|
}
|
|
|
|
public void setScheduled(int scheduled) {
|
|
this.scheduled = scheduled;
|
|
}
|
|
|
|
public int getCompleted() {
|
|
return completed;
|
|
}
|
|
|
|
public void setCompleted(int completed) {
|
|
this.completed = completed;
|
|
}
|
|
}
|