package com.ruoyi.chargingPile.api.vo;
|
|
import com.ruoyi.chargingPile.api.model.TParkingLot;
|
import com.ruoyi.chargingPile.api.model.TVehicleRamp;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
@Data
|
@ApiModel(value = "TParkingLotVO对象", description = "停车场")
|
public class TParkingLotVO extends TParkingLot {
|
|
@ApiModelProperty(value = "归属电站")
|
private String siteName;
|
|
}
|