Commit 66c1ffc3 authored by tangwei's avatar tangwei

修改数据类型

parent 5072533f
...@@ -48,7 +48,7 @@ public class SurveyDetailsDto extends BaseDto { ...@@ -48,7 +48,7 @@ public class SurveyDetailsDto extends BaseDto {
private Integer houseLayers; private Integer houseLayers;
@ApiModelProperty(value = "房屋总高") @ApiModelProperty(value = "房屋总高")
private float houseHeight; private Float houseHeight;
@ApiModelProperty(value = "房屋偏向") @ApiModelProperty(value = "房屋偏向")
private String houseBias; private String houseBias;
...@@ -63,7 +63,7 @@ public class SurveyDetailsDto extends BaseDto { ...@@ -63,7 +63,7 @@ public class SurveyDetailsDto extends BaseDto {
private String houseBiasNotes; private String houseBiasNotes;
@ApiModelProperty(value = "房屋年限") @ApiModelProperty(value = "房屋年限")
private float houseLife; private Float houseLife;
@ApiModelProperty(value = "地理位置-经度") @ApiModelProperty(value = "地理位置-经度")
private String locationLong; private String locationLong;
......
...@@ -71,7 +71,7 @@ public class SurveyDetails extends BaseEntity { ...@@ -71,7 +71,7 @@ public class SurveyDetails extends BaseEntity {
* 房屋总高 * 房屋总高
*/ */
@TableField("house_height") @TableField("house_height")
private float houseHeight; private Float houseHeight;
/** /**
* 房屋偏向 * 房屋偏向
...@@ -95,7 +95,7 @@ public class SurveyDetails extends BaseEntity { ...@@ -95,7 +95,7 @@ public class SurveyDetails extends BaseEntity {
* 房屋年限 * 房屋年限
*/ */
@TableField("house_life") @TableField("house_life")
private float houseLife; private Float houseLife;
/** /**
* 地理位置-经度 * 地理位置-经度
......
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