gongzuming
2024-09-12 478693f3f19392b057bf886a6a34e16321d9e6da
散户分配库位bug
已修改1个文件
2 ■■■ 文件已修改
src/main/java/com/mzl/flower/service/supplier/StationService.java 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/java/com/mzl/flower/service/supplier/StationService.java
@@ -98,6 +98,6 @@
    }
    public Boolean getMainWarehouse(String userId) {
        return stationMapper.selectCount(new LambdaQueryWrapper<Station>().like(Station::getUserIds, userId))>0;
        return stationMapper.selectCount(new LambdaQueryWrapper<Station>().eq(Station::getType,"0").like(Station::getUserIds, userId))>0;
    }
}