*
lsh
2025-04-02 00b8aee10ff8a0fe54187d51ec6b8c5de14250b6
src/main/java/com/zy/asrs/entity/CommandInfo.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 io.swagger.annotations.ApiModelProperty;
@@ -13,7 +15,7 @@
import java.io.Serializable;
@Data
@TableName("wcs_command_info")
@TableName("\"SOURCE\".\"wcs_command_info\"")
public class CommandInfo implements Serializable {
    private static final long serialVersionUID = 1L;
@@ -181,5 +183,12 @@
        }
    }
    public String getCommandType$() {
        if (Cools.isEmpty(this.commandType)) {
            return "";
        }
        return CommandType.get(this.commandType).desc;
    }
}