package com.zy.acs.manager.common.domain; import lombok.Data; /** * Created by vincent on 2023/8/4 */ @Data public class MockStepDto { private String code; private boolean pause; private int time; private Double distance; private String action; private String desc; public MockStepDto(String code, boolean pause) { this.code = code; this.pause = pause; } public MockStepDto(String code, boolean pause, String action) { this.code = code; this.pause = pause; this.action = action; } public String getDesc() { if (null == this.action || "".equals(this.action)) { return ""; } switch (this.action) { case "PICK": return "PICK"; case "DROP": return "DROP"; default: return ""; } } }