Commit 1ad32dde authored by neo's avatar neo

[bugfix] bb formular ds item cast exception

parent a8ab749c
......@@ -6,24 +6,27 @@ import pwc.taxtech.atms.constant.DataSourceName;
import pwc.taxtech.atms.constant.enums.FormulaDataSourceType;
import pwc.taxtech.atms.vat.entity.CellData;
import java.math.BigDecimal;
@Getter
@Setter
public class ReportCellDataSourceDto {
String tag = "BB";
String name;
Integer year;
Integer period;
Integer columnIndex;
String columnName;
Integer rowIndex;
String rowName;
String reportTemplateID;
String reportName;
String cellDataID;
String cellTemplateID;
Boolean isOnlyManualInput;
Integer type;
Integer resultType;
public class ReportCellDataSourceDto extends DataSourceDto {
private String tag = "BB";
private String name;
private Integer year;
private Integer period;
private Integer columnIndex;
private String columnName;
private Integer rowIndex;
private String rowName;
private String reportTemplateID;
private String reportName;
private String cellDataID;
private String cellTemplateID;
private Boolean isOnlyManualInput;
private Integer type;
private Integer resultType;
private BigDecimal amount;
public ReportCellDataSourceDto() {
this.type = FormulaDataSourceType.Report.getCode();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment