Commit 66c1ffc3 authored by tangwei's avatar tangwei

修改数据类型

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