1
18 小时以前 28b4c9e4e1855e61b9abea4c591e95094e1afd18
rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/BasStation.java
@@ -89,7 +89,7 @@
     */
    @ApiModelProperty(value = "可跨区区域id")
    @TableField(typeHandler = JacksonTypeHandler.class)
    private List<Long> crossZoneArea;
    private List<Integer> crossZoneArea;
    /**
     * 是否wcs站点
@@ -108,13 +108,13 @@
     */
    @ApiModelProperty(value = "容器类型")
    @TableField(typeHandler = JacksonTypeHandler.class)
    private List<Long> containerType;
    private List<Integer> containerType;
    /**
     * 条码
     */
    @ApiModelProperty(value = "条码")
    @TableField(updateStrategy = FieldStrategy.IGNORED)
    @TableField(updateStrategy = FieldStrategy.ALWAYS)
    private String barcode;
    /**
@@ -180,6 +180,18 @@
    @ApiModelProperty(value = "别名")
    @TableField(typeHandler = JacksonTypeHandler.class)
    private List<String> stationAlias;
    /**
     * 仓库编码
     */
    @ApiModelProperty(value = "仓库编码")
    private String productionLineCode;
    /**
     * 仓库名称
     */
    @ApiModelProperty(value = "仓库名称")
    private String productionLineName;
    public BasStation() {
    }
@@ -276,4 +288,6 @@
                return null;
        }
    }
}