83 lines
1.5 KiB
Java
83 lines
1.5 KiB
Java
package com.hivekion.basedata.entity;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import java.io.Serializable;
|
|
import io.swagger.annotations.ApiModel;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
/**
|
|
* <p>
|
|
*
|
|
* </p>
|
|
*
|
|
* @author liDongYu
|
|
* @since 2025-09-18
|
|
*/
|
|
@TableName("IMG_VEHICLE_IMAGE")
|
|
@ApiModel(value = "ImgVehicleImage对象", description = "")
|
|
public class ImgVehicleImage implements Serializable {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
private Integer id;
|
|
|
|
private String guid;
|
|
|
|
private byte[] icon;
|
|
|
|
private byte[] image;
|
|
|
|
private String model3d;
|
|
|
|
public Integer getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(Integer id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public String getGuid() {
|
|
return guid;
|
|
}
|
|
|
|
public void setGuid(String guid) {
|
|
this.guid = guid;
|
|
}
|
|
|
|
public byte[] getIcon() {
|
|
return icon;
|
|
}
|
|
|
|
public void setIcon(byte[] icon) {
|
|
this.icon = icon;
|
|
}
|
|
|
|
public byte[] getImage() {
|
|
return image;
|
|
}
|
|
|
|
public void setImage(byte[] image) {
|
|
this.image = image;
|
|
}
|
|
|
|
public String getModel3d() {
|
|
return model3d;
|
|
}
|
|
|
|
public void setModel3d(String model3d) {
|
|
this.model3d = model3d;
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return "ImgVehicleImage{" +
|
|
"id = " + id +
|
|
", guid = " + guid +
|
|
", icon = " + icon +
|
|
", image = " + image +
|
|
", model3d = " + model3d +
|
|
"}";
|
|
}
|
|
}
|