copy from pms-parent/pms-global/src/main/java/com/dy/pmsGlobal/pojoWo/WoDeviceProductionLog.java
copy to pms-parent/pms-global/src/main/java/com/dy/pmsGlobal/pojoSta/StaDeviceLife.java
File was copied from pms-parent/pms-global/src/main/java/com/dy/pmsGlobal/pojoWo/WoDeviceProductionLog.java |
| | |
| | | package com.dy.pmsGlobal.pojoWo; |
| | | package com.dy.pmsGlobal.pojoSta; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | import lombok.Data; |
| | | |
| | | /** |
| | | * 设备生产日志表 |
| | | * @TableName wo_device_production_log |
| | | * 设备生命周期表 |
| | | * @TableName sta_device_life |
| | | */ |
| | | @Data |
| | | public class WoDeviceProductionLog implements Serializable { |
| | | public class StaDeviceLife implements Serializable { |
| | | /** |
| | | * |
| | | */ |
| | |
| | | private String currNode; |
| | | |
| | | /** |
| | | * |
| | | * 下一节点 |
| | | */ |
| | | private String nextNode; |
| | | |
| | |
| | | private Integer result; |
| | | |
| | | /** |
| | | * |
| | | * 维修节点返回的错误码 |
| | | */ |
| | | private String errorCode; |
| | | |
| | |
| | | if (getClass() != that.getClass()) { |
| | | return false; |
| | | } |
| | | WoDeviceProductionLog other = (WoDeviceProductionLog) that; |
| | | StaDeviceLife other = (StaDeviceLife) that; |
| | | return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId())) |
| | | && (this.getEquipNo() == null ? other.getEquipNo() == null : this.getEquipNo().equals(other.getEquipNo())) |
| | | && (this.getPlanId() == null ? other.getPlanId() == null : this.getPlanId().equals(other.getPlanId())) |