39 lines
894 B
Java
39 lines
894 B
Java
package com.hivekion.baseData.domain.tblvehicleVo;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import lombok.Data;
|
|
|
|
import java.io.Serializable;
|
|
|
|
@Data
|
|
public class VehicleViewVo implements Serializable {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
@JsonProperty("ID")
|
|
private Integer Id;
|
|
|
|
@JsonProperty("Name")
|
|
private String Name;
|
|
|
|
@ApiModelProperty("速度")
|
|
private String vehicleSpreed;
|
|
|
|
@ApiModelProperty("类型")
|
|
private String vehicleType;
|
|
|
|
@ApiModelProperty("运油能力")
|
|
private Integer fuelAbility;
|
|
|
|
@ApiModelProperty("运药能力")
|
|
private Integer medicalAbility;
|
|
|
|
@ApiModelProperty("运弹药能力")
|
|
private Integer ammunitionAbility;
|
|
|
|
private Integer vehicleUse;
|
|
|
|
private String Guid;
|
|
}
|