PiLotSetupHDTO.java

package com.mycim.valueobject.ems.pilot.dto;

import com.mycim.valueobject.ems.pilot.PiLotSetupH;

/**
 * @author songpy
 * @version 1.0.0
 * @date 2021/8/26
 **/
public class PiLotSetupHDTO extends PiLotSetupH {
    private static final long serialVersionUID = 3969401117973543812L;

    private String transTimeStr;

    //Idle
    private String subType;

    private Integer maxRunTime;

    private Integer idleTime;

    private String resetComment;

    //PM
    private Integer bufferTime;

    private String pmConstraintRecipe;

    //Count
    private String countType;

    private Integer countSpec;

    private String timePointDate;

    private String countTriggerRecipe;

    private String countConstraintRecipe;

    //RC
    private String fromRecipeGroup;

    private String toRecipeGroup;

    public String getSubType() {
        return subType;
    }

    public void setSubType(String subType) {
        this.subType = subType;
    }

    public Integer getMaxRunTime() {
        return maxRunTime;
    }

    public void setMaxRunTime(Integer maxRunTime) {
        this.maxRunTime = maxRunTime;
    }

    public Integer getIdleTime() {
        return idleTime;
    }

    public void setIdleTime(Integer idleTime) {
        this.idleTime = idleTime;
    }

    public String getResetComment() {
        return resetComment;
    }

    public void setResetComment(String resetComment) {
        this.resetComment = resetComment;
    }

    public Integer getBufferTime() {
        return bufferTime;
    }

    public void setBufferTime(Integer bufferTime) {
        this.bufferTime = bufferTime;
    }

    public String getPmConstraintRecipe() {
        return pmConstraintRecipe;
    }

    public void setPmConstraintRecipe(String pmConstraintRecipe) {
        this.pmConstraintRecipe = pmConstraintRecipe;
    }

    public String getCountType() {
        return countType;
    }

    public void setCountType(String countType) {
        this.countType = countType;
    }

    public Integer getCountSpec() {
        return countSpec;
    }

    public void setCountSpec(Integer countSpec) {
        this.countSpec = countSpec;
    }

    public String getTimePointDate() {
        return timePointDate;
    }

    public void setTimePointDate(String timePointDate) {
        this.timePointDate = timePointDate;
    }

    public String getCountTriggerRecipe() {
        return countTriggerRecipe;
    }

    public void setCountTriggerRecipe(String countTriggerRecipe) {
        this.countTriggerRecipe = countTriggerRecipe;
    }

    public String getCountConstraintRecipe() {
        return countConstraintRecipe;
    }

    public void setCountConstraintRecipe(String countConstraintRecipe) {
        this.countConstraintRecipe = countConstraintRecipe;
    }

    public String getFromRecipeGroup() {
        return fromRecipeGroup;
    }

    public void setFromRecipeGroup(String fromRecipeGroup) {
        this.fromRecipeGroup = fromRecipeGroup;
    }

    public String getToRecipeGroup() {
        return toRecipeGroup;
    }

    public void setToRecipeGroup(String toRecipeGroup) {
        this.toRecipeGroup = toRecipeGroup;
    }

    public String getTransTimeStr() {
        return transTimeStr;
    }

    public void setTransTimeStr(String transTimeStr) {
        this.transTimeStr = transTimeStr;
    }

    @Override
    public String toString() {
        return "PiLotSetupHDTO{" + "transTimeStr='" + transTimeStr + '\'' + ", subType='" + subType + '\'' +
                ", maxRunTime=" + maxRunTime + ", idleTime=" + idleTime + ", resetComment='" + resetComment + '\'' +
                ", bufferTime=" + bufferTime + ", pmConstraintRecipe='" + pmConstraintRecipe + '\'' + ", countType='" +
                countType + '\'' + ", countSpec=" + countSpec + ", timePointDate='" + timePointDate + '\'' +
                ", countTriggerRecipe='" + countTriggerRecipe + '\'' + ", countConstraintRecipe='" +
                countConstraintRecipe + '\'' + ", fromRecipeGroup='" + fromRecipeGroup + '\'' + ", toRecipeGroup='" +
                toRecipeGroup + '\'' + "} " + super.toString();
    }

}