[FIX] missing model test class
This commit is contained in:
parent
5f682da13e
commit
841514935c
17
test/src/test/kar/archidata/apiExtern/model/DataTimes.java
Normal file
17
test/src/test/kar/archidata/apiExtern/model/DataTimes.java
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
package test.kar.archidata.apiExtern.model;
|
||||||
|
|
||||||
|
import java.sql.Timestamp;
|
||||||
|
import java.time.LocalDateTime;
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
public class DataTimes {
|
||||||
|
public Date time;
|
||||||
|
public Timestamp date;
|
||||||
|
public LocalDateTime dateTime;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "DataForJSR310 [time=" + this.time + ", date=" + this.date + ", dateTime=" + this.dateTime + "]";
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user