Merge remote-tracking branch 'origin/master'
commit
122b7aec05
@ -0,0 +1,450 @@
|
||||
package com.op.system.api.domain.device;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import com.op.common.core.annotation.Excel;
|
||||
import com.op.common.core.web.domain.BaseEntity;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* 设备管理对象 base_equipment
|
||||
*
|
||||
* @author Open Platform
|
||||
* @date 2023-10-17
|
||||
*/
|
||||
public class EquEquipmentDTO extends BaseEntity {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** 设备ID */
|
||||
private Long equipmentId;
|
||||
|
||||
/** 设备编码 */
|
||||
@Excel(name = "设备编码")
|
||||
private String equipmentCode;
|
||||
|
||||
/** 设备名称 */
|
||||
@Excel(name = "设备名称")
|
||||
private String equipmentName;
|
||||
|
||||
/** 品牌 */
|
||||
@Excel(name = "品牌")
|
||||
private String equipmentBrand;
|
||||
|
||||
/** 规格型号 */
|
||||
@Excel(name = "规格型号")
|
||||
private String equipmentSpec;
|
||||
|
||||
/** 设备类型ID */
|
||||
@Excel(name = "设备类型ID")
|
||||
private Long equipmentTypeId;
|
||||
|
||||
/** 设备类型编码 */
|
||||
@Excel(name = "设备类型编码")
|
||||
private String equipmentTypeCode;
|
||||
|
||||
/** 设备类型名称 */
|
||||
@Excel(name = "设备类型名称")
|
||||
private String equipmentTypeName;
|
||||
|
||||
/** 所属车间ID */
|
||||
@Excel(name = "所属车间ID")
|
||||
private Long workshopId;
|
||||
|
||||
/** 所属工作中心编码 */
|
||||
@Excel(name = "所属工作中心编码")
|
||||
private String workshopCode;
|
||||
|
||||
/** 所属工作中心名称 */
|
||||
@Excel(name = "所属工作中心名称")
|
||||
private String workshopName;
|
||||
|
||||
/** 设备状态,0异常 */
|
||||
@Excel(name = "设备状态,0异常")
|
||||
private String status;
|
||||
|
||||
/** 预留字段1 */
|
||||
@Excel(name = "预留字段1")
|
||||
private String attr1;
|
||||
|
||||
/** 预留字段2 */
|
||||
@Excel(name = "预留字段2")
|
||||
private String attr2;
|
||||
|
||||
/** 预留字段3 */
|
||||
@Excel(name = "预留字段3")
|
||||
private Long attr3;
|
||||
|
||||
/** 预留字段4 */
|
||||
@Excel(name = "预留字段4")
|
||||
private Long attr4;
|
||||
|
||||
/** 工段 */
|
||||
@Excel(name = "工段")
|
||||
private String workshopSection;
|
||||
|
||||
/** 设备位置 */
|
||||
@Excel(name = "设备位置")
|
||||
private String equipmentLocation;
|
||||
|
||||
/** 工时单价 */
|
||||
@Excel(name = "工时单价")
|
||||
private Long hourlyUnitPrice;
|
||||
|
||||
/** 设备条码 */
|
||||
@Excel(name = "设备条码")
|
||||
private String equipmentBarcode;
|
||||
|
||||
/** 设备条码图片 */
|
||||
@Excel(name = "设备条码图片")
|
||||
private String equipmentBarcodeImage;
|
||||
|
||||
/** 生产厂商 */
|
||||
@Excel(name = "生产厂商")
|
||||
private String manufacturer;
|
||||
|
||||
/** 供应商 */
|
||||
@Excel(name = "供应商")
|
||||
private String supplier;
|
||||
|
||||
/** 使用寿命 */
|
||||
@Excel(name = "使用寿命")
|
||||
private String useLife;
|
||||
|
||||
/** 购买时间 */
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@Excel(name = "购买时间", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date buyTime;
|
||||
|
||||
/** 资产原值 */
|
||||
@Excel(name = "资产原值")
|
||||
private String assetOriginalValue;
|
||||
|
||||
/** 资产净值 */
|
||||
@Excel(name = "资产净值")
|
||||
private String netAssetValue;
|
||||
|
||||
/** 资产负责人 */
|
||||
@Excel(name = "资产负责人")
|
||||
private String assetHead;
|
||||
|
||||
/** 固定资产编码 */
|
||||
@Excel(name = "固定资产编码")
|
||||
private String fixedAssetCode;
|
||||
|
||||
/** 部门 */
|
||||
@Excel(name = "部门")
|
||||
private String department;
|
||||
|
||||
/** 单台能力工时 */
|
||||
@Excel(name = "单台能力工时")
|
||||
private String unitWorkingHours;
|
||||
|
||||
/** PLCIP */
|
||||
@Excel(name = "PLCIP")
|
||||
private String plcIp;
|
||||
|
||||
/** PLC端口 */
|
||||
@Excel(name = "PLC端口")
|
||||
private Long plcPort;
|
||||
|
||||
/** 删除标志1删除,0正常 */
|
||||
private String delFlag;
|
||||
|
||||
/** SAP资产号 */
|
||||
@Excel(name = "SAP资产号")
|
||||
private String sapAsset;
|
||||
|
||||
public void setEquipmentId(Long equipmentId) {
|
||||
this.equipmentId = equipmentId;
|
||||
}
|
||||
|
||||
public Long getEquipmentId() {
|
||||
return equipmentId;
|
||||
}
|
||||
public void setEquipmentCode(String equipmentCode) {
|
||||
this.equipmentCode = equipmentCode;
|
||||
}
|
||||
|
||||
public String getEquipmentCode() {
|
||||
return equipmentCode;
|
||||
}
|
||||
public void setEquipmentName(String equipmentName) {
|
||||
this.equipmentName = equipmentName;
|
||||
}
|
||||
|
||||
public String getEquipmentName() {
|
||||
return equipmentName;
|
||||
}
|
||||
public void setEquipmentBrand(String equipmentBrand) {
|
||||
this.equipmentBrand = equipmentBrand;
|
||||
}
|
||||
|
||||
public String getEquipmentBrand() {
|
||||
return equipmentBrand;
|
||||
}
|
||||
public void setEquipmentSpec(String equipmentSpec) {
|
||||
this.equipmentSpec = equipmentSpec;
|
||||
}
|
||||
|
||||
public String getEquipmentSpec() {
|
||||
return equipmentSpec;
|
||||
}
|
||||
public void setEquipmentTypeId(Long equipmentTypeId) {
|
||||
this.equipmentTypeId = equipmentTypeId;
|
||||
}
|
||||
|
||||
public Long getEquipmentTypeId() {
|
||||
return equipmentTypeId;
|
||||
}
|
||||
public void setEquipmentTypeCode(String equipmentTypeCode) {
|
||||
this.equipmentTypeCode = equipmentTypeCode;
|
||||
}
|
||||
|
||||
public String getEquipmentTypeCode() {
|
||||
return equipmentTypeCode;
|
||||
}
|
||||
public void setEquipmentTypeName(String equipmentTypeName) {
|
||||
this.equipmentTypeName = equipmentTypeName;
|
||||
}
|
||||
|
||||
public String getEquipmentTypeName() {
|
||||
return equipmentTypeName;
|
||||
}
|
||||
public void setWorkshopId(Long workshopId) {
|
||||
this.workshopId = workshopId;
|
||||
}
|
||||
|
||||
public Long getWorkshopId() {
|
||||
return workshopId;
|
||||
}
|
||||
public void setWorkshopCode(String workshopCode) {
|
||||
this.workshopCode = workshopCode;
|
||||
}
|
||||
|
||||
public String getWorkshopCode() {
|
||||
return workshopCode;
|
||||
}
|
||||
public void setWorkshopName(String workshopName) {
|
||||
this.workshopName = workshopName;
|
||||
}
|
||||
|
||||
public String getWorkshopName() {
|
||||
return workshopName;
|
||||
}
|
||||
public void setStatus(String status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getStatus() {
|
||||
return status;
|
||||
}
|
||||
public void setAttr1(String attr1) {
|
||||
this.attr1 = attr1;
|
||||
}
|
||||
|
||||
public String getAttr1() {
|
||||
return attr1;
|
||||
}
|
||||
public void setAttr2(String attr2) {
|
||||
this.attr2 = attr2;
|
||||
}
|
||||
|
||||
public String getAttr2() {
|
||||
return attr2;
|
||||
}
|
||||
public void setAttr3(Long attr3) {
|
||||
this.attr3 = attr3;
|
||||
}
|
||||
|
||||
public Long getAttr3() {
|
||||
return attr3;
|
||||
}
|
||||
public void setAttr4(Long attr4) {
|
||||
this.attr4 = attr4;
|
||||
}
|
||||
|
||||
public Long getAttr4() {
|
||||
return attr4;
|
||||
}
|
||||
public void setWorkshopSection(String workshopSection) {
|
||||
this.workshopSection = workshopSection;
|
||||
}
|
||||
|
||||
public String getWorkshopSection() {
|
||||
return workshopSection;
|
||||
}
|
||||
public void setEquipmentLocation(String equipmentLocation) {
|
||||
this.equipmentLocation = equipmentLocation;
|
||||
}
|
||||
|
||||
public String getEquipmentLocation() {
|
||||
return equipmentLocation;
|
||||
}
|
||||
public void setHourlyUnitPrice(Long hourlyUnitPrice) {
|
||||
this.hourlyUnitPrice = hourlyUnitPrice;
|
||||
}
|
||||
|
||||
public Long getHourlyUnitPrice() {
|
||||
return hourlyUnitPrice;
|
||||
}
|
||||
public void setEquipmentBarcode(String equipmentBarcode) {
|
||||
this.equipmentBarcode = equipmentBarcode;
|
||||
}
|
||||
|
||||
public String getEquipmentBarcode() {
|
||||
return equipmentBarcode;
|
||||
}
|
||||
public void setEquipmentBarcodeImage(String equipmentBarcodeImage) {
|
||||
this.equipmentBarcodeImage = equipmentBarcodeImage;
|
||||
}
|
||||
|
||||
public String getEquipmentBarcodeImage() {
|
||||
return equipmentBarcodeImage;
|
||||
}
|
||||
public void setManufacturer(String manufacturer) {
|
||||
this.manufacturer = manufacturer;
|
||||
}
|
||||
|
||||
public String getManufacturer() {
|
||||
return manufacturer;
|
||||
}
|
||||
public void setSupplier(String supplier) {
|
||||
this.supplier = supplier;
|
||||
}
|
||||
|
||||
public String getSupplier() {
|
||||
return supplier;
|
||||
}
|
||||
public void setUseLife(String useLife) {
|
||||
this.useLife = useLife;
|
||||
}
|
||||
|
||||
public String getUseLife() {
|
||||
return useLife;
|
||||
}
|
||||
public void setBuyTime(Date buyTime) {
|
||||
this.buyTime = buyTime;
|
||||
}
|
||||
|
||||
public Date getBuyTime() {
|
||||
return buyTime;
|
||||
}
|
||||
public void setAssetOriginalValue(String assetOriginalValue) {
|
||||
this.assetOriginalValue = assetOriginalValue;
|
||||
}
|
||||
|
||||
public String getAssetOriginalValue() {
|
||||
return assetOriginalValue;
|
||||
}
|
||||
public void setNetAssetValue(String netAssetValue) {
|
||||
this.netAssetValue = netAssetValue;
|
||||
}
|
||||
|
||||
public String getNetAssetValue() {
|
||||
return netAssetValue;
|
||||
}
|
||||
public void setAssetHead(String assetHead) {
|
||||
this.assetHead = assetHead;
|
||||
}
|
||||
|
||||
public String getAssetHead() {
|
||||
return assetHead;
|
||||
}
|
||||
public void setFixedAssetCode(String fixedAssetCode) {
|
||||
this.fixedAssetCode = fixedAssetCode;
|
||||
}
|
||||
|
||||
public String getFixedAssetCode() {
|
||||
return fixedAssetCode;
|
||||
}
|
||||
public void setDepartment(String department) {
|
||||
this.department = department;
|
||||
}
|
||||
|
||||
public String getDepartment() {
|
||||
return department;
|
||||
}
|
||||
public void setUnitWorkingHours(String unitWorkingHours) {
|
||||
this.unitWorkingHours = unitWorkingHours;
|
||||
}
|
||||
|
||||
public String getUnitWorkingHours() {
|
||||
return unitWorkingHours;
|
||||
}
|
||||
public void setPlcIp(String plcIp) {
|
||||
this.plcIp = plcIp;
|
||||
}
|
||||
|
||||
public String getPlcIp() {
|
||||
return plcIp;
|
||||
}
|
||||
public void setPlcPort(Long plcPort) {
|
||||
this.plcPort = plcPort;
|
||||
}
|
||||
|
||||
public Long getPlcPort() {
|
||||
return plcPort;
|
||||
}
|
||||
public void setDelFlag(String delFlag) {
|
||||
this.delFlag = delFlag;
|
||||
}
|
||||
|
||||
public String getDelFlag() {
|
||||
return delFlag;
|
||||
}
|
||||
public void setSapAsset(String sapAsset) {
|
||||
this.sapAsset = sapAsset;
|
||||
}
|
||||
|
||||
public String getSapAsset() {
|
||||
return sapAsset;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("equipmentId", getEquipmentId())
|
||||
.append("equipmentCode", getEquipmentCode())
|
||||
.append("equipmentName", getEquipmentName())
|
||||
.append("equipmentBrand", getEquipmentBrand())
|
||||
.append("equipmentSpec", getEquipmentSpec())
|
||||
.append("equipmentTypeId", getEquipmentTypeId())
|
||||
.append("equipmentTypeCode", getEquipmentTypeCode())
|
||||
.append("equipmentTypeName", getEquipmentTypeName())
|
||||
.append("workshopId", getWorkshopId())
|
||||
.append("workshopCode", getWorkshopCode())
|
||||
.append("workshopName", getWorkshopName())
|
||||
.append("status", getStatus())
|
||||
.append("remark", getRemark())
|
||||
.append("attr1", getAttr1())
|
||||
.append("attr2", getAttr2())
|
||||
.append("attr3", getAttr3())
|
||||
.append("attr4", getAttr4())
|
||||
.append("createBy", getCreateBy())
|
||||
.append("createTime", getCreateTime())
|
||||
.append("updateBy", getUpdateBy())
|
||||
.append("updateTime", getUpdateTime())
|
||||
.append("workshopSection", getWorkshopSection())
|
||||
.append("equipmentLocation", getEquipmentLocation())
|
||||
.append("hourlyUnitPrice", getHourlyUnitPrice())
|
||||
.append("equipmentBarcode", getEquipmentBarcode())
|
||||
.append("equipmentBarcodeImage", getEquipmentBarcodeImage())
|
||||
.append("manufacturer", getManufacturer())
|
||||
.append("supplier", getSupplier())
|
||||
.append("useLife", getUseLife())
|
||||
.append("buyTime", getBuyTime())
|
||||
.append("assetOriginalValue", getAssetOriginalValue())
|
||||
.append("netAssetValue", getNetAssetValue())
|
||||
.append("assetHead", getAssetHead())
|
||||
.append("fixedAssetCode", getFixedAssetCode())
|
||||
.append("department", getDepartment())
|
||||
.append("unitWorkingHours", getUnitWorkingHours())
|
||||
.append("plcIp", getPlcIp())
|
||||
.append("plcPort", getPlcPort())
|
||||
.append("delFlag", getDelFlag())
|
||||
.append("sapAsset", getSapAsset())
|
||||
.toString();
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue