Skip to content

Commit

Permalink
add test entity
Browse files Browse the repository at this point in the history
  • Loading branch information
ozlerhakan committed Aug 2, 2018
1 parent 1c2aef3 commit d668219
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions src/test/java/com/poiji/deserialize/model/byid/Calculation.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
package com.poiji.deserialize.model.byid;

import com.poiji.annotation.ExcelCell;

import java.time.LocalDate;

/**
* Created by hakan on 02/08/2018
*/
public class Calculation {

@ExcelCell(0)
private LocalDate fromDate;

@ExcelCell(1)
private LocalDate toDate;

@ExcelCell(2)
private String is;

@ExcelCell(3)
private Float total;

@ExcelCell(4)
private Float turnover;

public LocalDate getFromDate() {
return fromDate;
}

public LocalDate getToDate() {
return toDate;
}

public String getIs() {
return is;
}

public Float getTotal() {
return total;
}

public Float getTurnover() {
return turnover;
}
}

0 comments on commit d668219

Please sign in to comment.