@ -49,9 +49,9 @@ public class BfLayout extends BaseBean {
@ApiParam(value = "列数")
private Integer layoutColumnCount;
public Integer getLayoutColumnCount(){
public Integer getLayoutColumnCountValue(){
if(this.layoutColumnCount == null) {
return null;
return 0;
}
return layoutColumnCount.intValue();
@ -52,6 +52,13 @@ public class BfLayoutRow extends BaseBean {
@ApiParam(value = "行所关联列数")
private Integer rowColNum;
public int getRowColNumValue(){
if(rowColNum == null){
return rowColNum.intValue();
// 行所包含的列
@Transient
private List<BfLayoutColumn> bfLayoutColumns;