刘小明
2024-06-19 d05dd9bd1e32e95108b0a299ccf71459c685c222
pms-parent/pms-global/src/main/java/com/dy/pmsGlobal/pojoSta/StaDeviceLife.java
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
@@ -1,15 +1,15 @@
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 {
    /**
     * 
     */
@@ -36,7 +36,7 @@
    private String currNode;
    /**
     *
     * 下一节点
     */
    private String nextNode;
@@ -56,7 +56,7 @@
    private Integer result;
    /**
     *
     * 维修节点返回的错误码
     */
    private String errorCode;
@@ -103,7 +103,7 @@
        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()))