Browse Source

feat: 修改经纬度字段类型

master_tdsql
hxh 1 year ago
parent
commit
e786f858b5
  1. 6
      shuili-system/src/main/java/com/kms/yxgh/df/domain/DfPoint.java
  2. 6
      shuili-system/src/main/java/com/kms/yxgh/df/domain/DfTrace.java
  3. 6
      shuili-system/src/main/java/com/kms/yxgh/sz/domain/SzPoint.java
  4. 6
      shuili-system/src/main/java/com/kms/yxgh/sz/domain/SzTrace.java

6
shuili-system/src/main/java/com/kms/yxgh/df/domain/DfPoint.java

@ -35,20 +35,20 @@ public class DfPoint extends SyBaseEntity {
*/ */
@Excel(name = "经度") @Excel(name = "经度")
@ApiModelProperty("经度") @ApiModelProperty("经度")
private Long longitude; private Double longitude;
/** /**
* 纬度 * 纬度
*/ */
@Excel(name = "纬度") @Excel(name = "纬度")
@ApiModelProperty("纬度") @ApiModelProperty("纬度")
private Long latitude; private Double latitude;
/** /**
* 海拔 * 海拔
*/ */
@Excel(name = "海拔") @Excel(name = "海拔")
@ApiModelProperty("海拔") @ApiModelProperty("海拔")
private Long altitude; private Double altitude;
} }

6
shuili-system/src/main/java/com/kms/yxgh/df/domain/DfTrace.java

@ -36,21 +36,21 @@ public class DfTrace extends SyBaseEntity {
*/ */
@Excel(name = "经度") @Excel(name = "经度")
@ApiModelProperty("经度") @ApiModelProperty("经度")
private Long longitude; private Double longitude;
/** /**
* 纬度 * 纬度
*/ */
@Excel(name = "纬度") @Excel(name = "纬度")
@ApiModelProperty("纬度") @ApiModelProperty("纬度")
private Long latitude; private Double latitude;
/** /**
* 海拔 * 海拔
*/ */
@Excel(name = "海拔") @Excel(name = "海拔")
@ApiModelProperty("海拔") @ApiModelProperty("海拔")
private Long altitude; private Double altitude;
/** /**
* 最近修改人 * 最近修改人

6
shuili-system/src/main/java/com/kms/yxgh/sz/domain/SzPoint.java

@ -35,21 +35,21 @@ public class SzPoint extends SyBaseEntity {
*/ */
@Excel(name = "经度") @Excel(name = "经度")
@ApiModelProperty("经度") @ApiModelProperty("经度")
private Long longitude; private Double longitude;
/** /**
* 纬度 * 纬度
*/ */
@Excel(name = "纬度") @Excel(name = "纬度")
@ApiModelProperty("纬度") @ApiModelProperty("纬度")
private Long latitude; private Double latitude;
/** /**
* 海拔 * 海拔
*/ */
@Excel(name = "海拔") @Excel(name = "海拔")
@ApiModelProperty("海拔") @ApiModelProperty("海拔")
private Long altitude; private Double altitude;
} }

6
shuili-system/src/main/java/com/kms/yxgh/sz/domain/SzTrace.java

@ -36,21 +36,21 @@ public class SzTrace extends SyBaseEntity {
*/ */
@Excel(name = "经度") @Excel(name = "经度")
@ApiModelProperty("经度") @ApiModelProperty("经度")
private Long longitude; private Double longitude;
/** /**
* 纬度 * 纬度
*/ */
@Excel(name = "纬度") @Excel(name = "纬度")
@ApiModelProperty("纬度") @ApiModelProperty("纬度")
private Long latitude; private Double latitude;
/** /**
* 海拔 * 海拔
*/ */
@Excel(name = "海拔") @Excel(name = "海拔")
@ApiModelProperty("海拔") @ApiModelProperty("海拔")
private Long altitude; private Double altitude;
/** /**
* 最近修改人 * 最近修改人

Loading…
Cancel
Save