自动化立体仓库 - WCS系统
#
lsh
2024-03-22 84988579b77ec4578af30d5c836690beeff3562c
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;
    }
}