skyouc
2025-04-12 5ae1669ac1794f62cf72e7d5352853da14d440b9
rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/Loc.java
@@ -63,7 +63,7 @@
    @ApiModelProperty("库位类型(*)[man_loc_type]")
    @TableField(exist = false)
    private String typeIds;
    private List<Long> typeIds;
    /**
     * 虚拟库位
@@ -280,9 +280,10 @@
//            null    // 备注
//    );
    public String getType$(){
    public String getTypeIds$(){
        if (null == this.type){ return null; }
        List<String> asList = Arrays.asList(this.type);
        String[] split = this.type.split(",");
        List<String> asList = Arrays.asList(split);
        if (asList.isEmpty()) {
            return null;
        }