增加车辆经纬度
This commit is contained in:
parent
00a3717526
commit
fdb45c6586
|
|
@ -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=暂停")
|
||||
|
|
|
|||
Loading…
Reference in New Issue