1. Project Clover database Sun May 19 2019 23:30:46 BRT
  2. Package net.technearts

File SimpleEntity.java

 

Code metrics

0
0
0
1
15
12
0
-
-
0
-

Classes

Class Line # Actions
SimpleEntity 9 0 - 0 0
-1.0 -
 

Contributing tests

No tests hitting this source file were found.

Source view

1    package net.technearts;
2   
3    import java.math.BigDecimal;
4    import java.util.Date;
5   
6    import lombok.Data;
7   
8    @Data
 
9    public class SimpleEntity {
10    private Date date;
11    private Integer integer;
12    private BigDecimal decimal;
13    private Double doubleNumber;
14    private String text;
15    }