自动化立体仓库 - WCS系统
Junjie
2023-11-29 7b316902c2b3ee1d50f67bea43ee454007e8f080
src/main/java/com/zy/asrs/entity/CommandInfoLog.java
@@ -5,6 +5,8 @@
import com.baomidou.mybatisplus.annotations.TableField;
import java.text.SimpleDateFormat;
import java.util.Date;
import com.zy.core.enums.CommandType;
import org.springframework.format.annotation.DateTimeFormat;
import java.text.SimpleDateFormat;
import java.util.Date;
@@ -212,5 +214,12 @@
        return Math.abs(day) + "天" + Math.abs(hour) + "小时" + Math.abs(min) + "分" + Math.abs(s) + "秒";
    }
    public String getCommandType$() {
        if (Cools.isEmpty(this.commandType)) {
            return "";
        }
        return CommandType.get(this.commandType).desc;
    }
}