234 lines
5.7 KiB
Java
234 lines
5.7 KiB
Java
|
|
package com.jdc.jdcproject.entity;
|
||
|
|
|
||
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
||
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
||
|
|
import java.io.Serializable;
|
||
|
|
import java.time.LocalDateTime;
|
||
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* <p>
|
||
|
|
* 设备信息表;
|
||
|
|
* </p>
|
||
|
|
*
|
||
|
|
* @author xvxboo
|
||
|
|
* @since 2025-11-03
|
||
|
|
*/
|
||
|
|
@TableName("yangluduichejian_equipmentinfo")
|
||
|
|
@Schema(name = "YangluduichejianEquipmentinfo", description = "设备信息表;")
|
||
|
|
public class YangluduichejianEquipmentinfo implements Serializable {
|
||
|
|
|
||
|
|
private static final long serialVersionUID = 1L;
|
||
|
|
|
||
|
|
@Schema(description = "主键")
|
||
|
|
@TableId("EquipmentID")
|
||
|
|
private Integer equipmentID;
|
||
|
|
|
||
|
|
@Schema(description = "设备类型")
|
||
|
|
private String equipmentType;
|
||
|
|
|
||
|
|
@Schema(description = "品牌")
|
||
|
|
private String brand;
|
||
|
|
|
||
|
|
@Schema(description = "型号")
|
||
|
|
private String model;
|
||
|
|
|
||
|
|
@Schema(description = "投运时间")
|
||
|
|
private LocalDateTime putIntoServiceDate;
|
||
|
|
|
||
|
|
@Schema(description = "购买时间")
|
||
|
|
private LocalDateTime purchaseDate;
|
||
|
|
|
||
|
|
@Schema(description = "铲刀宽度")
|
||
|
|
private String bladeWidth;
|
||
|
|
|
||
|
|
@Schema(description = "发动机号")
|
||
|
|
private String engineNumber;
|
||
|
|
|
||
|
|
@Schema(description = "发动机型号")
|
||
|
|
private String engineModel;
|
||
|
|
|
||
|
|
@Schema(description = "功率")
|
||
|
|
private String power;
|
||
|
|
|
||
|
|
@Schema(description = "排放标准")
|
||
|
|
private String emissionStandard;
|
||
|
|
|
||
|
|
@Schema(description = "购买价格")
|
||
|
|
private LocalDateTime purchasePrice;
|
||
|
|
|
||
|
|
@Schema(description = "重量")
|
||
|
|
private LocalDateTime weight;
|
||
|
|
|
||
|
|
@Schema(description = "外形尺寸")
|
||
|
|
private String dimensions;
|
||
|
|
|
||
|
|
@Schema(description = "固定资产编号")
|
||
|
|
private String fixedAssetNumber;
|
||
|
|
|
||
|
|
@Schema(description = "保险情况")
|
||
|
|
private String insuranceStatus;
|
||
|
|
|
||
|
|
@Schema(description = "保险日期")
|
||
|
|
private LocalDateTime insuranceDate;
|
||
|
|
|
||
|
|
public Integer getEquipmentID() {
|
||
|
|
return equipmentID;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setEquipmentID(Integer equipmentID) {
|
||
|
|
this.equipmentID = equipmentID;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getEquipmentType() {
|
||
|
|
return equipmentType;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setEquipmentType(String equipmentType) {
|
||
|
|
this.equipmentType = equipmentType;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getBrand() {
|
||
|
|
return brand;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setBrand(String brand) {
|
||
|
|
this.brand = brand;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getModel() {
|
||
|
|
return model;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setModel(String model) {
|
||
|
|
this.model = model;
|
||
|
|
}
|
||
|
|
|
||
|
|
public LocalDateTime getPutIntoServiceDate() {
|
||
|
|
return putIntoServiceDate;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setPutIntoServiceDate(LocalDateTime putIntoServiceDate) {
|
||
|
|
this.putIntoServiceDate = putIntoServiceDate;
|
||
|
|
}
|
||
|
|
|
||
|
|
public LocalDateTime getPurchaseDate() {
|
||
|
|
return purchaseDate;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setPurchaseDate(LocalDateTime purchaseDate) {
|
||
|
|
this.purchaseDate = purchaseDate;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getBladeWidth() {
|
||
|
|
return bladeWidth;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setBladeWidth(String bladeWidth) {
|
||
|
|
this.bladeWidth = bladeWidth;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getEngineNumber() {
|
||
|
|
return engineNumber;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setEngineNumber(String engineNumber) {
|
||
|
|
this.engineNumber = engineNumber;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getEngineModel() {
|
||
|
|
return engineModel;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setEngineModel(String engineModel) {
|
||
|
|
this.engineModel = engineModel;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getPower() {
|
||
|
|
return power;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setPower(String power) {
|
||
|
|
this.power = power;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getEmissionStandard() {
|
||
|
|
return emissionStandard;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setEmissionStandard(String emissionStandard) {
|
||
|
|
this.emissionStandard = emissionStandard;
|
||
|
|
}
|
||
|
|
|
||
|
|
public LocalDateTime getPurchasePrice() {
|
||
|
|
return purchasePrice;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setPurchasePrice(LocalDateTime purchasePrice) {
|
||
|
|
this.purchasePrice = purchasePrice;
|
||
|
|
}
|
||
|
|
|
||
|
|
public LocalDateTime getWeight() {
|
||
|
|
return weight;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setWeight(LocalDateTime weight) {
|
||
|
|
this.weight = weight;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getDimensions() {
|
||
|
|
return dimensions;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setDimensions(String dimensions) {
|
||
|
|
this.dimensions = dimensions;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getFixedAssetNumber() {
|
||
|
|
return fixedAssetNumber;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setFixedAssetNumber(String fixedAssetNumber) {
|
||
|
|
this.fixedAssetNumber = fixedAssetNumber;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getInsuranceStatus() {
|
||
|
|
return insuranceStatus;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setInsuranceStatus(String insuranceStatus) {
|
||
|
|
this.insuranceStatus = insuranceStatus;
|
||
|
|
}
|
||
|
|
|
||
|
|
public LocalDateTime getInsuranceDate() {
|
||
|
|
return insuranceDate;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setInsuranceDate(LocalDateTime insuranceDate) {
|
||
|
|
this.insuranceDate = insuranceDate;
|
||
|
|
}
|
||
|
|
|
||
|
|
@Override
|
||
|
|
public String toString() {
|
||
|
|
return "YangluduichejianEquipmentinfo{" +
|
||
|
|
"equipmentID = " + equipmentID +
|
||
|
|
", equipmentType = " + equipmentType +
|
||
|
|
", brand = " + brand +
|
||
|
|
", model = " + model +
|
||
|
|
", putIntoServiceDate = " + putIntoServiceDate +
|
||
|
|
", purchaseDate = " + purchaseDate +
|
||
|
|
", bladeWidth = " + bladeWidth +
|
||
|
|
", engineNumber = " + engineNumber +
|
||
|
|
", engineModel = " + engineModel +
|
||
|
|
", power = " + power +
|
||
|
|
", emissionStandard = " + emissionStandard +
|
||
|
|
", purchasePrice = " + purchasePrice +
|
||
|
|
", weight = " + weight +
|
||
|
|
", dimensions = " + dimensions +
|
||
|
|
", fixedAssetNumber = " + fixedAssetNumber +
|
||
|
|
", insuranceStatus = " + insuranceStatus +
|
||
|
|
", insuranceDate = " + insuranceDate +
|
||
|
|
"}";
|
||
|
|
}
|
||
|
|
}
|