增加车辆经纬度

This commit is contained in:
zhangyue 2026-08-04 17:19:25 +08:00
parent 00a3717526
commit fdb45c6586
1 changed files with 15 additions and 0 deletions

View File

@ -65,6 +65,21 @@ public class SurvVehicleInfo implements Serializable {
@Excel(name = "车辆说明", width = 15)
@ApiModelProperty(value = "车辆说明")
private String veDes;
/**
* 车辆经度
*/
@TableField("VE_LONG")
@ApiModelProperty(value = "车辆经度")
private String veLong;
/**
* 车辆纬度
*/
@TableField("VE_LAT")
@ApiModelProperty(value = "车辆纬度")
private String veLat;
/**车辆状态;1=可用0=暂停*/
@Excel(name = "车辆状态;1=可用0=暂停", width = 15)
@ApiModelProperty(value = "车辆状态;1=可用0=暂停")