自动化立体仓库 - WMS系统
whycq
2024-11-25 bcb19e8c93c3cabf0d8eb3ee34ed819b3c5a10ef
src/main/java/com/zy/asrs/entity/FlowLog.java
@@ -22,7 +22,7 @@
     * 数据编号
     */
    @ApiModelProperty(value= "数据编号")
    @TableId(value = "id", type = IdType.INPUT)
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
    /**
@@ -245,17 +245,27 @@
    public String getOpType$() {
        String otp = "";
        if (this.opType == 1L) {
            otp = "1";
            otp = "新增订单";
        } else if (this.opType == 2L) {
            otp = "2";
            otp = "修改订单";
        } else if (this.opType == 3L) {
            otp = "3";
        } else if (this.opType == 3L) {
            otp = "3";
        } else if (this.opType == 3L) {
            otp = "3";
            otp = "组托入库";
        } else if (this.opType == 4L) {
            otp = "订单出库";
        } else if (this.opType == 5L) {
            otp = "调拨出库";
        } else if (this.opType == 6L) {
            otp = "加工出库";
        } else if (this.opType == 7L) {
            otp = "取消入库";
        } else if (this.opType == 8L) {
            otp = "取消移库";
        } else if (this.opType == 9L) {
            otp = "取消调拨";
        } else if (this.opType == 101L) {
            otp = "101.入库";
        }
        return "";
        return otp;
    }