package com.qianwen.smartman.modules.cps.excel;
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
import com.alibaba.excel.annotation.write.style.ColumnWidth;
|
import com.alibaba.excel.annotation.write.style.ContentRowHeight;
|
import com.alibaba.excel.annotation.write.style.HeadRowHeight;
|
import java.io.Serializable;
|
|
@HeadRowHeight(20)
|
@ColumnWidth(16)
|
@ContentRowHeight(18)
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/cps/excel/MachineExcel.class */
|
public class MachineExcel implements Serializable {
|
private static final long serialVersionUID = -38604868131317557L;
|
@ExcelProperty({"机器编号"})
|
private String machineCode;
|
@ExcelProperty({"机器名称"})
|
private String machineName;
|
@ExcelProperty({"机器PIN码"})
|
private String pinCode;
|
@ExcelProperty({"短编号"})
|
private String shortCode;
|
@ExcelProperty({"机器类型编号"})
|
private String machineTypeCode;
|
@ExcelProperty({"机器类型名称"})
|
private String machineTypeName;
|
@ExcelProperty({"机器序列号"})
|
private String serialNo;
|
@ExcelProperty({"产地国别"})
|
private String countryOfManufacture;
|
@ExcelProperty({"生命状态"})
|
private String machineLifeStatusName;
|
@ExcelProperty({"电压(v)"})
|
private String voltage;
|
@ExcelProperty({"机器规格"})
|
private String machineModel;
|
@ExcelProperty({"轮廓尺寸(cm)"})
|
private String dimensions;
|
@ExcelProperty({"净重(kg)"})
|
private String netWeight;
|
@ExcelProperty({"功率(kw)"})
|
private String power;
|
@ExcelProperty({"系统名称"})
|
private String systemName;
|
@ExcelProperty({"机器品牌"})
|
private String brand;
|
@ExcelProperty({"机器铭牌"})
|
private String nameplate;
|
@ExcelProperty({"软件版本"})
|
private String softwareVersion;
|
@ExcelProperty({"所属机器组"})
|
private String groupName;
|
@ExcelProperty({"发票金额"})
|
private String invoiceValue;
|
@ExcelProperty({"资产原值"})
|
private String ovfa;
|
@ExcelProperty({"资产净值"})
|
private String netAssetValue;
|
@ExcelProperty({"资产编号"})
|
private String assetsCode;
|
@ExcelProperty({"交付日期"})
|
private String deliveryTime;
|
@ExcelProperty({"生产日期"})
|
private String productionTime;
|
@ExcelProperty({"折旧年限"})
|
private String depreciationYear;
|
@ExcelProperty({"制造厂商"})
|
private String manufacturer;
|
@ExcelProperty({"出厂档案"})
|
private String factoryFile;
|
@ExcelProperty({"出厂编号"})
|
private String factoryNo;
|
@ExcelProperty({"安装位置"})
|
private String installationLocation;
|
@ExcelProperty({"转固日期"})
|
private String turnToFixedAssetsTime;
|
@ExcelProperty({"管理等级"})
|
private String managementClassName;
|
@ExcelProperty({"使用部门"})
|
private String organizationName;
|
@ExcelProperty({"生产线"})
|
private String productionLine;
|
@ExcelProperty({"是否是特种设备"})
|
private String elaborateEquipment;
|
@ExcelProperty({"使用状态名称"})
|
private String machineUseStatusName;
|
@ExcelProperty({"责任人"})
|
private String employeeName;
|
@ExcelProperty({"备注"})
|
private String remark;
|
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/cps/excel/MachineExcel$MachineExcelBuilder.class */
|
public static class MachineExcelBuilder {
|
private String machineCode;
|
private String machineName;
|
private String pinCode;
|
private String shortCode;
|
private String machineTypeCode;
|
private String machineTypeName;
|
private String serialNo;
|
private String countryOfManufacture;
|
private String machineLifeStatusName;
|
private String voltage;
|
private String machineModel;
|
private String dimensions;
|
private String netWeight;
|
private String power;
|
private String systemName;
|
private String brand;
|
private String nameplate;
|
private String softwareVersion;
|
private String groupName;
|
private String invoiceValue;
|
private String ovfa;
|
private String netAssetValue;
|
private String assetsCode;
|
private String deliveryTime;
|
private String productionTime;
|
private String depreciationYear;
|
private String manufacturer;
|
private String factoryFile;
|
private String factoryNo;
|
private String installationLocation;
|
private String turnToFixedAssetsTime;
|
private String managementClassName;
|
private String organizationName;
|
private String productionLine;
|
private String elaborateEquipment;
|
private String machineUseStatusName;
|
private String employeeName;
|
private String remark;
|
|
MachineExcelBuilder() {
|
}
|
|
public MachineExcelBuilder machineCode(final String machineCode) {
|
this.machineCode = machineCode;
|
return this;
|
}
|
|
public MachineExcelBuilder machineName(final String machineName) {
|
this.machineName = machineName;
|
return this;
|
}
|
|
public MachineExcelBuilder pinCode(final String pinCode) {
|
this.pinCode = pinCode;
|
return this;
|
}
|
|
public MachineExcelBuilder shortCode(final String shortCode) {
|
this.shortCode = shortCode;
|
return this;
|
}
|
|
public MachineExcelBuilder machineTypeCode(final String machineTypeCode) {
|
this.machineTypeCode = machineTypeCode;
|
return this;
|
}
|
|
public MachineExcelBuilder machineTypeName(final String machineTypeName) {
|
this.machineTypeName = machineTypeName;
|
return this;
|
}
|
|
public MachineExcelBuilder serialNo(final String serialNo) {
|
this.serialNo = serialNo;
|
return this;
|
}
|
|
public MachineExcelBuilder countryOfManufacture(final String countryOfManufacture) {
|
this.countryOfManufacture = countryOfManufacture;
|
return this;
|
}
|
|
public MachineExcelBuilder machineLifeStatusName(final String machineLifeStatusName) {
|
this.machineLifeStatusName = machineLifeStatusName;
|
return this;
|
}
|
|
public MachineExcelBuilder voltage(final String voltage) {
|
this.voltage = voltage;
|
return this;
|
}
|
|
public MachineExcelBuilder machineModel(final String machineModel) {
|
this.machineModel = machineModel;
|
return this;
|
}
|
|
public MachineExcelBuilder dimensions(final String dimensions) {
|
this.dimensions = dimensions;
|
return this;
|
}
|
|
public MachineExcelBuilder netWeight(final String netWeight) {
|
this.netWeight = netWeight;
|
return this;
|
}
|
|
public MachineExcelBuilder power(final String power) {
|
this.power = power;
|
return this;
|
}
|
|
public MachineExcelBuilder systemName(final String systemName) {
|
this.systemName = systemName;
|
return this;
|
}
|
|
public MachineExcelBuilder brand(final String brand) {
|
this.brand = brand;
|
return this;
|
}
|
|
public MachineExcelBuilder nameplate(final String nameplate) {
|
this.nameplate = nameplate;
|
return this;
|
}
|
|
public MachineExcelBuilder softwareVersion(final String softwareVersion) {
|
this.softwareVersion = softwareVersion;
|
return this;
|
}
|
|
public MachineExcelBuilder groupName(final String groupName) {
|
this.groupName = groupName;
|
return this;
|
}
|
|
public MachineExcelBuilder invoiceValue(final String invoiceValue) {
|
this.invoiceValue = invoiceValue;
|
return this;
|
}
|
|
public MachineExcelBuilder ovfa(final String ovfa) {
|
this.ovfa = ovfa;
|
return this;
|
}
|
|
public MachineExcelBuilder netAssetValue(final String netAssetValue) {
|
this.netAssetValue = netAssetValue;
|
return this;
|
}
|
|
public MachineExcelBuilder assetsCode(final String assetsCode) {
|
this.assetsCode = assetsCode;
|
return this;
|
}
|
|
public MachineExcelBuilder deliveryTime(final String deliveryTime) {
|
this.deliveryTime = deliveryTime;
|
return this;
|
}
|
|
public MachineExcelBuilder productionTime(final String productionTime) {
|
this.productionTime = productionTime;
|
return this;
|
}
|
|
public MachineExcelBuilder depreciationYear(final String depreciationYear) {
|
this.depreciationYear = depreciationYear;
|
return this;
|
}
|
|
public MachineExcelBuilder manufacturer(final String manufacturer) {
|
this.manufacturer = manufacturer;
|
return this;
|
}
|
|
public MachineExcelBuilder factoryFile(final String factoryFile) {
|
this.factoryFile = factoryFile;
|
return this;
|
}
|
|
public MachineExcelBuilder factoryNo(final String factoryNo) {
|
this.factoryNo = factoryNo;
|
return this;
|
}
|
|
public MachineExcelBuilder installationLocation(final String installationLocation) {
|
this.installationLocation = installationLocation;
|
return this;
|
}
|
|
public MachineExcelBuilder turnToFixedAssetsTime(final String turnToFixedAssetsTime) {
|
this.turnToFixedAssetsTime = turnToFixedAssetsTime;
|
return this;
|
}
|
|
public MachineExcelBuilder managementClassName(final String managementClassName) {
|
this.managementClassName = managementClassName;
|
return this;
|
}
|
|
public MachineExcelBuilder organizationName(final String organizationName) {
|
this.organizationName = organizationName;
|
return this;
|
}
|
|
public MachineExcelBuilder productionLine(final String productionLine) {
|
this.productionLine = productionLine;
|
return this;
|
}
|
|
public MachineExcelBuilder elaborateEquipment(final String elaborateEquipment) {
|
this.elaborateEquipment = elaborateEquipment;
|
return this;
|
}
|
|
public MachineExcelBuilder machineUseStatusName(final String machineUseStatusName) {
|
this.machineUseStatusName = machineUseStatusName;
|
return this;
|
}
|
|
public MachineExcelBuilder employeeName(final String employeeName) {
|
this.employeeName = employeeName;
|
return this;
|
}
|
|
public MachineExcelBuilder remark(final String remark) {
|
this.remark = remark;
|
return this;
|
}
|
|
public MachineExcel build() {
|
return new MachineExcel(this.machineCode, this.machineName, this.pinCode, this.shortCode, this.machineTypeCode, this.machineTypeName, this.serialNo, this.countryOfManufacture, this.machineLifeStatusName, this.voltage, this.machineModel, this.dimensions, this.netWeight, this.power, this.systemName, this.brand, this.nameplate, this.softwareVersion, this.groupName, this.invoiceValue, this.ovfa, this.netAssetValue, this.assetsCode, this.deliveryTime, this.productionTime, this.depreciationYear, this.manufacturer, this.factoryFile, this.factoryNo, this.installationLocation, this.turnToFixedAssetsTime, this.managementClassName, this.organizationName, this.productionLine, this.elaborateEquipment, this.machineUseStatusName, this.employeeName, this.remark);
|
}
|
|
public String toString() {
|
return "MachineExcel.MachineExcelBuilder(machineCode=" + this.machineCode + ", machineName=" + this.machineName + ", pinCode=" + this.pinCode + ", shortCode=" + this.shortCode + ", machineTypeCode=" + this.machineTypeCode + ", machineTypeName=" + this.machineTypeName + ", serialNo=" + this.serialNo + ", countryOfManufacture=" + this.countryOfManufacture + ", machineLifeStatusName=" + this.machineLifeStatusName + ", voltage=" + this.voltage + ", machineModel=" + this.machineModel + ", dimensions=" + this.dimensions + ", netWeight=" + this.netWeight + ", power=" + this.power + ", systemName=" + this.systemName + ", brand=" + this.brand + ", nameplate=" + this.nameplate + ", softwareVersion=" + this.softwareVersion + ", groupName=" + this.groupName + ", invoiceValue=" + this.invoiceValue + ", ovfa=" + this.ovfa + ", netAssetValue=" + this.netAssetValue + ", assetsCode=" + this.assetsCode + ", deliveryTime=" + this.deliveryTime + ", productionTime=" + this.productionTime + ", depreciationYear=" + this.depreciationYear + ", manufacturer=" + this.manufacturer + ", factoryFile=" + this.factoryFile + ", factoryNo=" + this.factoryNo + ", installationLocation=" + this.installationLocation + ", turnToFixedAssetsTime=" + this.turnToFixedAssetsTime + ", managementClassName=" + this.managementClassName + ", organizationName=" + this.organizationName + ", productionLine=" + this.productionLine + ", elaborateEquipment=" + this.elaborateEquipment + ", machineUseStatusName=" + this.machineUseStatusName + ", employeeName=" + this.employeeName + ", remark=" + this.remark + ")";
|
}
|
}
|
|
public void setMachineCode(final String machineCode) {
|
this.machineCode = machineCode;
|
}
|
|
public void setMachineName(final String machineName) {
|
this.machineName = machineName;
|
}
|
|
public void setPinCode(final String pinCode) {
|
this.pinCode = pinCode;
|
}
|
|
public void setShortCode(final String shortCode) {
|
this.shortCode = shortCode;
|
}
|
|
public void setMachineTypeCode(final String machineTypeCode) {
|
this.machineTypeCode = machineTypeCode;
|
}
|
|
public void setMachineTypeName(final String machineTypeName) {
|
this.machineTypeName = machineTypeName;
|
}
|
|
public void setSerialNo(final String serialNo) {
|
this.serialNo = serialNo;
|
}
|
|
public void setCountryOfManufacture(final String countryOfManufacture) {
|
this.countryOfManufacture = countryOfManufacture;
|
}
|
|
public void setMachineLifeStatusName(final String machineLifeStatusName) {
|
this.machineLifeStatusName = machineLifeStatusName;
|
}
|
|
public void setVoltage(final String voltage) {
|
this.voltage = voltage;
|
}
|
|
public void setMachineModel(final String machineModel) {
|
this.machineModel = machineModel;
|
}
|
|
public void setDimensions(final String dimensions) {
|
this.dimensions = dimensions;
|
}
|
|
public void setNetWeight(final String netWeight) {
|
this.netWeight = netWeight;
|
}
|
|
public void setPower(final String power) {
|
this.power = power;
|
}
|
|
public void setSystemName(final String systemName) {
|
this.systemName = systemName;
|
}
|
|
public void setBrand(final String brand) {
|
this.brand = brand;
|
}
|
|
public void setNameplate(final String nameplate) {
|
this.nameplate = nameplate;
|
}
|
|
public void setSoftwareVersion(final String softwareVersion) {
|
this.softwareVersion = softwareVersion;
|
}
|
|
public void setGroupName(final String groupName) {
|
this.groupName = groupName;
|
}
|
|
public void setInvoiceValue(final String invoiceValue) {
|
this.invoiceValue = invoiceValue;
|
}
|
|
public void setOvfa(final String ovfa) {
|
this.ovfa = ovfa;
|
}
|
|
public void setNetAssetValue(final String netAssetValue) {
|
this.netAssetValue = netAssetValue;
|
}
|
|
public void setAssetsCode(final String assetsCode) {
|
this.assetsCode = assetsCode;
|
}
|
|
public void setDeliveryTime(final String deliveryTime) {
|
this.deliveryTime = deliveryTime;
|
}
|
|
public void setProductionTime(final String productionTime) {
|
this.productionTime = productionTime;
|
}
|
|
public void setDepreciationYear(final String depreciationYear) {
|
this.depreciationYear = depreciationYear;
|
}
|
|
public void setManufacturer(final String manufacturer) {
|
this.manufacturer = manufacturer;
|
}
|
|
public void setFactoryFile(final String factoryFile) {
|
this.factoryFile = factoryFile;
|
}
|
|
public void setFactoryNo(final String factoryNo) {
|
this.factoryNo = factoryNo;
|
}
|
|
public void setInstallationLocation(final String installationLocation) {
|
this.installationLocation = installationLocation;
|
}
|
|
public void setTurnToFixedAssetsTime(final String turnToFixedAssetsTime) {
|
this.turnToFixedAssetsTime = turnToFixedAssetsTime;
|
}
|
|
public void setManagementClassName(final String managementClassName) {
|
this.managementClassName = managementClassName;
|
}
|
|
public void setOrganizationName(final String organizationName) {
|
this.organizationName = organizationName;
|
}
|
|
public void setProductionLine(final String productionLine) {
|
this.productionLine = productionLine;
|
}
|
|
public void setElaborateEquipment(final String elaborateEquipment) {
|
this.elaborateEquipment = elaborateEquipment;
|
}
|
|
public void setMachineUseStatusName(final String machineUseStatusName) {
|
this.machineUseStatusName = machineUseStatusName;
|
}
|
|
public void setEmployeeName(final String employeeName) {
|
this.employeeName = employeeName;
|
}
|
|
public void setRemark(final String remark) {
|
this.remark = remark;
|
}
|
|
public boolean equals(final Object o) {
|
if (o == this) {
|
return true;
|
}
|
if (o instanceof MachineExcel) {
|
MachineExcel other = (MachineExcel) o;
|
if (other.canEqual(this)) {
|
Object this$machineCode = getMachineCode();
|
Object other$machineCode = other.getMachineCode();
|
if (this$machineCode == null) {
|
if (other$machineCode != null) {
|
return false;
|
}
|
} else if (!this$machineCode.equals(other$machineCode)) {
|
return false;
|
}
|
Object this$machineName = getMachineName();
|
Object other$machineName = other.getMachineName();
|
if (this$machineName == null) {
|
if (other$machineName != null) {
|
return false;
|
}
|
} else if (!this$machineName.equals(other$machineName)) {
|
return false;
|
}
|
Object this$pinCode = getPinCode();
|
Object other$pinCode = other.getPinCode();
|
if (this$pinCode == null) {
|
if (other$pinCode != null) {
|
return false;
|
}
|
} else if (!this$pinCode.equals(other$pinCode)) {
|
return false;
|
}
|
Object this$shortCode = getShortCode();
|
Object other$shortCode = other.getShortCode();
|
if (this$shortCode == null) {
|
if (other$shortCode != null) {
|
return false;
|
}
|
} else if (!this$shortCode.equals(other$shortCode)) {
|
return false;
|
}
|
Object this$machineTypeCode = getMachineTypeCode();
|
Object other$machineTypeCode = other.getMachineTypeCode();
|
if (this$machineTypeCode == null) {
|
if (other$machineTypeCode != null) {
|
return false;
|
}
|
} else if (!this$machineTypeCode.equals(other$machineTypeCode)) {
|
return false;
|
}
|
Object this$machineTypeName = getMachineTypeName();
|
Object other$machineTypeName = other.getMachineTypeName();
|
if (this$machineTypeName == null) {
|
if (other$machineTypeName != null) {
|
return false;
|
}
|
} else if (!this$machineTypeName.equals(other$machineTypeName)) {
|
return false;
|
}
|
Object this$serialNo = getSerialNo();
|
Object other$serialNo = other.getSerialNo();
|
if (this$serialNo == null) {
|
if (other$serialNo != null) {
|
return false;
|
}
|
} else if (!this$serialNo.equals(other$serialNo)) {
|
return false;
|
}
|
Object this$countryOfManufacture = getCountryOfManufacture();
|
Object other$countryOfManufacture = other.getCountryOfManufacture();
|
if (this$countryOfManufacture == null) {
|
if (other$countryOfManufacture != null) {
|
return false;
|
}
|
} else if (!this$countryOfManufacture.equals(other$countryOfManufacture)) {
|
return false;
|
}
|
Object this$machineLifeStatusName = getMachineLifeStatusName();
|
Object other$machineLifeStatusName = other.getMachineLifeStatusName();
|
if (this$machineLifeStatusName == null) {
|
if (other$machineLifeStatusName != null) {
|
return false;
|
}
|
} else if (!this$machineLifeStatusName.equals(other$machineLifeStatusName)) {
|
return false;
|
}
|
Object this$voltage = getVoltage();
|
Object other$voltage = other.getVoltage();
|
if (this$voltage == null) {
|
if (other$voltage != null) {
|
return false;
|
}
|
} else if (!this$voltage.equals(other$voltage)) {
|
return false;
|
}
|
Object this$machineModel = getMachineModel();
|
Object other$machineModel = other.getMachineModel();
|
if (this$machineModel == null) {
|
if (other$machineModel != null) {
|
return false;
|
}
|
} else if (!this$machineModel.equals(other$machineModel)) {
|
return false;
|
}
|
Object this$dimensions = getDimensions();
|
Object other$dimensions = other.getDimensions();
|
if (this$dimensions == null) {
|
if (other$dimensions != null) {
|
return false;
|
}
|
} else if (!this$dimensions.equals(other$dimensions)) {
|
return false;
|
}
|
Object this$netWeight = getNetWeight();
|
Object other$netWeight = other.getNetWeight();
|
if (this$netWeight == null) {
|
if (other$netWeight != null) {
|
return false;
|
}
|
} else if (!this$netWeight.equals(other$netWeight)) {
|
return false;
|
}
|
Object this$power = getPower();
|
Object other$power = other.getPower();
|
if (this$power == null) {
|
if (other$power != null) {
|
return false;
|
}
|
} else if (!this$power.equals(other$power)) {
|
return false;
|
}
|
Object this$systemName = getSystemName();
|
Object other$systemName = other.getSystemName();
|
if (this$systemName == null) {
|
if (other$systemName != null) {
|
return false;
|
}
|
} else if (!this$systemName.equals(other$systemName)) {
|
return false;
|
}
|
Object this$brand = getBrand();
|
Object other$brand = other.getBrand();
|
if (this$brand == null) {
|
if (other$brand != null) {
|
return false;
|
}
|
} else if (!this$brand.equals(other$brand)) {
|
return false;
|
}
|
Object this$nameplate = getNameplate();
|
Object other$nameplate = other.getNameplate();
|
if (this$nameplate == null) {
|
if (other$nameplate != null) {
|
return false;
|
}
|
} else if (!this$nameplate.equals(other$nameplate)) {
|
return false;
|
}
|
Object this$softwareVersion = getSoftwareVersion();
|
Object other$softwareVersion = other.getSoftwareVersion();
|
if (this$softwareVersion == null) {
|
if (other$softwareVersion != null) {
|
return false;
|
}
|
} else if (!this$softwareVersion.equals(other$softwareVersion)) {
|
return false;
|
}
|
Object this$groupName = getGroupName();
|
Object other$groupName = other.getGroupName();
|
if (this$groupName == null) {
|
if (other$groupName != null) {
|
return false;
|
}
|
} else if (!this$groupName.equals(other$groupName)) {
|
return false;
|
}
|
Object this$invoiceValue = getInvoiceValue();
|
Object other$invoiceValue = other.getInvoiceValue();
|
if (this$invoiceValue == null) {
|
if (other$invoiceValue != null) {
|
return false;
|
}
|
} else if (!this$invoiceValue.equals(other$invoiceValue)) {
|
return false;
|
}
|
Object this$ovfa = getOvfa();
|
Object other$ovfa = other.getOvfa();
|
if (this$ovfa == null) {
|
if (other$ovfa != null) {
|
return false;
|
}
|
} else if (!this$ovfa.equals(other$ovfa)) {
|
return false;
|
}
|
Object this$netAssetValue = getNetAssetValue();
|
Object other$netAssetValue = other.getNetAssetValue();
|
if (this$netAssetValue == null) {
|
if (other$netAssetValue != null) {
|
return false;
|
}
|
} else if (!this$netAssetValue.equals(other$netAssetValue)) {
|
return false;
|
}
|
Object this$assetsCode = getAssetsCode();
|
Object other$assetsCode = other.getAssetsCode();
|
if (this$assetsCode == null) {
|
if (other$assetsCode != null) {
|
return false;
|
}
|
} else if (!this$assetsCode.equals(other$assetsCode)) {
|
return false;
|
}
|
Object this$deliveryTime = getDeliveryTime();
|
Object other$deliveryTime = other.getDeliveryTime();
|
if (this$deliveryTime == null) {
|
if (other$deliveryTime != null) {
|
return false;
|
}
|
} else if (!this$deliveryTime.equals(other$deliveryTime)) {
|
return false;
|
}
|
Object this$productionTime = getProductionTime();
|
Object other$productionTime = other.getProductionTime();
|
if (this$productionTime == null) {
|
if (other$productionTime != null) {
|
return false;
|
}
|
} else if (!this$productionTime.equals(other$productionTime)) {
|
return false;
|
}
|
Object this$depreciationYear = getDepreciationYear();
|
Object other$depreciationYear = other.getDepreciationYear();
|
if (this$depreciationYear == null) {
|
if (other$depreciationYear != null) {
|
return false;
|
}
|
} else if (!this$depreciationYear.equals(other$depreciationYear)) {
|
return false;
|
}
|
Object this$manufacturer = getManufacturer();
|
Object other$manufacturer = other.getManufacturer();
|
if (this$manufacturer == null) {
|
if (other$manufacturer != null) {
|
return false;
|
}
|
} else if (!this$manufacturer.equals(other$manufacturer)) {
|
return false;
|
}
|
Object this$factoryFile = getFactoryFile();
|
Object other$factoryFile = other.getFactoryFile();
|
if (this$factoryFile == null) {
|
if (other$factoryFile != null) {
|
return false;
|
}
|
} else if (!this$factoryFile.equals(other$factoryFile)) {
|
return false;
|
}
|
Object this$factoryNo = getFactoryNo();
|
Object other$factoryNo = other.getFactoryNo();
|
if (this$factoryNo == null) {
|
if (other$factoryNo != null) {
|
return false;
|
}
|
} else if (!this$factoryNo.equals(other$factoryNo)) {
|
return false;
|
}
|
Object this$installationLocation = getInstallationLocation();
|
Object other$installationLocation = other.getInstallationLocation();
|
if (this$installationLocation == null) {
|
if (other$installationLocation != null) {
|
return false;
|
}
|
} else if (!this$installationLocation.equals(other$installationLocation)) {
|
return false;
|
}
|
Object this$turnToFixedAssetsTime = getTurnToFixedAssetsTime();
|
Object other$turnToFixedAssetsTime = other.getTurnToFixedAssetsTime();
|
if (this$turnToFixedAssetsTime == null) {
|
if (other$turnToFixedAssetsTime != null) {
|
return false;
|
}
|
} else if (!this$turnToFixedAssetsTime.equals(other$turnToFixedAssetsTime)) {
|
return false;
|
}
|
Object this$managementClassName = getManagementClassName();
|
Object other$managementClassName = other.getManagementClassName();
|
if (this$managementClassName == null) {
|
if (other$managementClassName != null) {
|
return false;
|
}
|
} else if (!this$managementClassName.equals(other$managementClassName)) {
|
return false;
|
}
|
Object this$organizationName = getOrganizationName();
|
Object other$organizationName = other.getOrganizationName();
|
if (this$organizationName == null) {
|
if (other$organizationName != null) {
|
return false;
|
}
|
} else if (!this$organizationName.equals(other$organizationName)) {
|
return false;
|
}
|
Object this$productionLine = getProductionLine();
|
Object other$productionLine = other.getProductionLine();
|
if (this$productionLine == null) {
|
if (other$productionLine != null) {
|
return false;
|
}
|
} else if (!this$productionLine.equals(other$productionLine)) {
|
return false;
|
}
|
Object this$elaborateEquipment = getElaborateEquipment();
|
Object other$elaborateEquipment = other.getElaborateEquipment();
|
if (this$elaborateEquipment == null) {
|
if (other$elaborateEquipment != null) {
|
return false;
|
}
|
} else if (!this$elaborateEquipment.equals(other$elaborateEquipment)) {
|
return false;
|
}
|
Object this$machineUseStatusName = getMachineUseStatusName();
|
Object other$machineUseStatusName = other.getMachineUseStatusName();
|
if (this$machineUseStatusName == null) {
|
if (other$machineUseStatusName != null) {
|
return false;
|
}
|
} else if (!this$machineUseStatusName.equals(other$machineUseStatusName)) {
|
return false;
|
}
|
Object this$employeeName = getEmployeeName();
|
Object other$employeeName = other.getEmployeeName();
|
if (this$employeeName == null) {
|
if (other$employeeName != null) {
|
return false;
|
}
|
} else if (!this$employeeName.equals(other$employeeName)) {
|
return false;
|
}
|
Object this$remark = getRemark();
|
Object other$remark = other.getRemark();
|
return this$remark == null ? other$remark == null : this$remark.equals(other$remark);
|
}
|
return false;
|
}
|
return false;
|
}
|
|
protected boolean canEqual(final Object other) {
|
return other instanceof MachineExcel;
|
}
|
|
public int hashCode() {
|
Object $machineCode = getMachineCode();
|
int result = (1 * 59) + ($machineCode == null ? 43 : $machineCode.hashCode());
|
Object $machineName = getMachineName();
|
int result2 = (result * 59) + ($machineName == null ? 43 : $machineName.hashCode());
|
Object $pinCode = getPinCode();
|
int result3 = (result2 * 59) + ($pinCode == null ? 43 : $pinCode.hashCode());
|
Object $shortCode = getShortCode();
|
int result4 = (result3 * 59) + ($shortCode == null ? 43 : $shortCode.hashCode());
|
Object $machineTypeCode = getMachineTypeCode();
|
int result5 = (result4 * 59) + ($machineTypeCode == null ? 43 : $machineTypeCode.hashCode());
|
Object $machineTypeName = getMachineTypeName();
|
int result6 = (result5 * 59) + ($machineTypeName == null ? 43 : $machineTypeName.hashCode());
|
Object $serialNo = getSerialNo();
|
int result7 = (result6 * 59) + ($serialNo == null ? 43 : $serialNo.hashCode());
|
Object $countryOfManufacture = getCountryOfManufacture();
|
int result8 = (result7 * 59) + ($countryOfManufacture == null ? 43 : $countryOfManufacture.hashCode());
|
Object $machineLifeStatusName = getMachineLifeStatusName();
|
int result9 = (result8 * 59) + ($machineLifeStatusName == null ? 43 : $machineLifeStatusName.hashCode());
|
Object $voltage = getVoltage();
|
int result10 = (result9 * 59) + ($voltage == null ? 43 : $voltage.hashCode());
|
Object $machineModel = getMachineModel();
|
int result11 = (result10 * 59) + ($machineModel == null ? 43 : $machineModel.hashCode());
|
Object $dimensions = getDimensions();
|
int result12 = (result11 * 59) + ($dimensions == null ? 43 : $dimensions.hashCode());
|
Object $netWeight = getNetWeight();
|
int result13 = (result12 * 59) + ($netWeight == null ? 43 : $netWeight.hashCode());
|
Object $power = getPower();
|
int result14 = (result13 * 59) + ($power == null ? 43 : $power.hashCode());
|
Object $systemName = getSystemName();
|
int result15 = (result14 * 59) + ($systemName == null ? 43 : $systemName.hashCode());
|
Object $brand = getBrand();
|
int result16 = (result15 * 59) + ($brand == null ? 43 : $brand.hashCode());
|
Object $nameplate = getNameplate();
|
int result17 = (result16 * 59) + ($nameplate == null ? 43 : $nameplate.hashCode());
|
Object $softwareVersion = getSoftwareVersion();
|
int result18 = (result17 * 59) + ($softwareVersion == null ? 43 : $softwareVersion.hashCode());
|
Object $groupName = getGroupName();
|
int result19 = (result18 * 59) + ($groupName == null ? 43 : $groupName.hashCode());
|
Object $invoiceValue = getInvoiceValue();
|
int result20 = (result19 * 59) + ($invoiceValue == null ? 43 : $invoiceValue.hashCode());
|
Object $ovfa = getOvfa();
|
int result21 = (result20 * 59) + ($ovfa == null ? 43 : $ovfa.hashCode());
|
Object $netAssetValue = getNetAssetValue();
|
int result22 = (result21 * 59) + ($netAssetValue == null ? 43 : $netAssetValue.hashCode());
|
Object $assetsCode = getAssetsCode();
|
int result23 = (result22 * 59) + ($assetsCode == null ? 43 : $assetsCode.hashCode());
|
Object $deliveryTime = getDeliveryTime();
|
int result24 = (result23 * 59) + ($deliveryTime == null ? 43 : $deliveryTime.hashCode());
|
Object $productionTime = getProductionTime();
|
int result25 = (result24 * 59) + ($productionTime == null ? 43 : $productionTime.hashCode());
|
Object $depreciationYear = getDepreciationYear();
|
int result26 = (result25 * 59) + ($depreciationYear == null ? 43 : $depreciationYear.hashCode());
|
Object $manufacturer = getManufacturer();
|
int result27 = (result26 * 59) + ($manufacturer == null ? 43 : $manufacturer.hashCode());
|
Object $factoryFile = getFactoryFile();
|
int result28 = (result27 * 59) + ($factoryFile == null ? 43 : $factoryFile.hashCode());
|
Object $factoryNo = getFactoryNo();
|
int result29 = (result28 * 59) + ($factoryNo == null ? 43 : $factoryNo.hashCode());
|
Object $installationLocation = getInstallationLocation();
|
int result30 = (result29 * 59) + ($installationLocation == null ? 43 : $installationLocation.hashCode());
|
Object $turnToFixedAssetsTime = getTurnToFixedAssetsTime();
|
int result31 = (result30 * 59) + ($turnToFixedAssetsTime == null ? 43 : $turnToFixedAssetsTime.hashCode());
|
Object $managementClassName = getManagementClassName();
|
int result32 = (result31 * 59) + ($managementClassName == null ? 43 : $managementClassName.hashCode());
|
Object $organizationName = getOrganizationName();
|
int result33 = (result32 * 59) + ($organizationName == null ? 43 : $organizationName.hashCode());
|
Object $productionLine = getProductionLine();
|
int result34 = (result33 * 59) + ($productionLine == null ? 43 : $productionLine.hashCode());
|
Object $elaborateEquipment = getElaborateEquipment();
|
int result35 = (result34 * 59) + ($elaborateEquipment == null ? 43 : $elaborateEquipment.hashCode());
|
Object $machineUseStatusName = getMachineUseStatusName();
|
int result36 = (result35 * 59) + ($machineUseStatusName == null ? 43 : $machineUseStatusName.hashCode());
|
Object $employeeName = getEmployeeName();
|
int result37 = (result36 * 59) + ($employeeName == null ? 43 : $employeeName.hashCode());
|
Object $remark = getRemark();
|
return (result37 * 59) + ($remark == null ? 43 : $remark.hashCode());
|
}
|
|
public String toString() {
|
return "MachineExcel(machineCode=" + getMachineCode() + ", machineName=" + getMachineName() + ", pinCode=" + getPinCode() + ", shortCode=" + getShortCode() + ", machineTypeCode=" + getMachineTypeCode() + ", machineTypeName=" + getMachineTypeName() + ", serialNo=" + getSerialNo() + ", countryOfManufacture=" + getCountryOfManufacture() + ", machineLifeStatusName=" + getMachineLifeStatusName() + ", voltage=" + getVoltage() + ", machineModel=" + getMachineModel() + ", dimensions=" + getDimensions() + ", netWeight=" + getNetWeight() + ", power=" + getPower() + ", systemName=" + getSystemName() + ", brand=" + getBrand() + ", nameplate=" + getNameplate() + ", softwareVersion=" + getSoftwareVersion() + ", groupName=" + getGroupName() + ", invoiceValue=" + getInvoiceValue() + ", ovfa=" + getOvfa() + ", netAssetValue=" + getNetAssetValue() + ", assetsCode=" + getAssetsCode() + ", deliveryTime=" + getDeliveryTime() + ", productionTime=" + getProductionTime() + ", depreciationYear=" + getDepreciationYear() + ", manufacturer=" + getManufacturer() + ", factoryFile=" + getFactoryFile() + ", factoryNo=" + getFactoryNo() + ", installationLocation=" + getInstallationLocation() + ", turnToFixedAssetsTime=" + getTurnToFixedAssetsTime() + ", managementClassName=" + getManagementClassName() + ", organizationName=" + getOrganizationName() + ", productionLine=" + getProductionLine() + ", elaborateEquipment=" + getElaborateEquipment() + ", machineUseStatusName=" + getMachineUseStatusName() + ", employeeName=" + getEmployeeName() + ", remark=" + getRemark() + ")";
|
}
|
|
public static MachineExcelBuilder builder() {
|
return new MachineExcelBuilder();
|
}
|
|
public MachineExcel() {
|
}
|
|
public MachineExcel(final String machineCode, final String machineName, final String pinCode, final String shortCode, final String machineTypeCode, final String machineTypeName, final String serialNo, final String countryOfManufacture, final String machineLifeStatusName, final String voltage, final String machineModel, final String dimensions, final String netWeight, final String power, final String systemName, final String brand, final String nameplate, final String softwareVersion, final String groupName, final String invoiceValue, final String ovfa, final String netAssetValue, final String assetsCode, final String deliveryTime, final String productionTime, final String depreciationYear, final String manufacturer, final String factoryFile, final String factoryNo, final String installationLocation, final String turnToFixedAssetsTime, final String managementClassName, final String organizationName, final String productionLine, final String elaborateEquipment, final String machineUseStatusName, final String employeeName, final String remark) {
|
this.machineCode = machineCode;
|
this.machineName = machineName;
|
this.pinCode = pinCode;
|
this.shortCode = shortCode;
|
this.machineTypeCode = machineTypeCode;
|
this.machineTypeName = machineTypeName;
|
this.serialNo = serialNo;
|
this.countryOfManufacture = countryOfManufacture;
|
this.machineLifeStatusName = machineLifeStatusName;
|
this.voltage = voltage;
|
this.machineModel = machineModel;
|
this.dimensions = dimensions;
|
this.netWeight = netWeight;
|
this.power = power;
|
this.systemName = systemName;
|
this.brand = brand;
|
this.nameplate = nameplate;
|
this.softwareVersion = softwareVersion;
|
this.groupName = groupName;
|
this.invoiceValue = invoiceValue;
|
this.ovfa = ovfa;
|
this.netAssetValue = netAssetValue;
|
this.assetsCode = assetsCode;
|
this.deliveryTime = deliveryTime;
|
this.productionTime = productionTime;
|
this.depreciationYear = depreciationYear;
|
this.manufacturer = manufacturer;
|
this.factoryFile = factoryFile;
|
this.factoryNo = factoryNo;
|
this.installationLocation = installationLocation;
|
this.turnToFixedAssetsTime = turnToFixedAssetsTime;
|
this.managementClassName = managementClassName;
|
this.organizationName = organizationName;
|
this.productionLine = productionLine;
|
this.elaborateEquipment = elaborateEquipment;
|
this.machineUseStatusName = machineUseStatusName;
|
this.employeeName = employeeName;
|
this.remark = remark;
|
}
|
|
public String getMachineCode() {
|
return this.machineCode;
|
}
|
|
public String getMachineName() {
|
return this.machineName;
|
}
|
|
public String getPinCode() {
|
return this.pinCode;
|
}
|
|
public String getShortCode() {
|
return this.shortCode;
|
}
|
|
public String getMachineTypeCode() {
|
return this.machineTypeCode;
|
}
|
|
public String getMachineTypeName() {
|
return this.machineTypeName;
|
}
|
|
public String getSerialNo() {
|
return this.serialNo;
|
}
|
|
public String getCountryOfManufacture() {
|
return this.countryOfManufacture;
|
}
|
|
public String getMachineLifeStatusName() {
|
return this.machineLifeStatusName;
|
}
|
|
public String getVoltage() {
|
return this.voltage;
|
}
|
|
public String getMachineModel() {
|
return this.machineModel;
|
}
|
|
public String getDimensions() {
|
return this.dimensions;
|
}
|
|
public String getNetWeight() {
|
return this.netWeight;
|
}
|
|
public String getPower() {
|
return this.power;
|
}
|
|
public String getSystemName() {
|
return this.systemName;
|
}
|
|
public String getBrand() {
|
return this.brand;
|
}
|
|
public String getNameplate() {
|
return this.nameplate;
|
}
|
|
public String getSoftwareVersion() {
|
return this.softwareVersion;
|
}
|
|
public String getGroupName() {
|
return this.groupName;
|
}
|
|
public String getInvoiceValue() {
|
return this.invoiceValue;
|
}
|
|
public String getOvfa() {
|
return this.ovfa;
|
}
|
|
public String getNetAssetValue() {
|
return this.netAssetValue;
|
}
|
|
public String getAssetsCode() {
|
return this.assetsCode;
|
}
|
|
public String getDeliveryTime() {
|
return this.deliveryTime;
|
}
|
|
public String getProductionTime() {
|
return this.productionTime;
|
}
|
|
public String getDepreciationYear() {
|
return this.depreciationYear;
|
}
|
|
public String getManufacturer() {
|
return this.manufacturer;
|
}
|
|
public String getFactoryFile() {
|
return this.factoryFile;
|
}
|
|
public String getFactoryNo() {
|
return this.factoryNo;
|
}
|
|
public String getInstallationLocation() {
|
return this.installationLocation;
|
}
|
|
public String getTurnToFixedAssetsTime() {
|
return this.turnToFixedAssetsTime;
|
}
|
|
public String getManagementClassName() {
|
return this.managementClassName;
|
}
|
|
public String getOrganizationName() {
|
return this.organizationName;
|
}
|
|
public String getProductionLine() {
|
return this.productionLine;
|
}
|
|
public String getElaborateEquipment() {
|
return this.elaborateEquipment;
|
}
|
|
public String getMachineUseStatusName() {
|
return this.machineUseStatusName;
|
}
|
|
public String getEmployeeName() {
|
return this.employeeName;
|
}
|
|
public String getRemark() {
|
return this.remark;
|
}
|
}
|