yuxc
2023-08-02 1f2566489ee6e435f4d464f8b33d9d214fdf139f
Source/UBCS/ubcs-service/ubcs-system/src/main/java/com/vci/ubcs/system/service/impl/CombinationServiceImpl.java
@@ -110,7 +110,9 @@
    */
   @Override
   public List<Map<String, Object>> selectMaps() {
      List<Map<String, Object>> maps = listMaps(new QueryWrapper<Combination>().select("ID", "NAME"));
      List<Map<String, Object>> maps = listMaps(
         new QueryWrapper<Combination>().lambda().select(Combination::getId, Combination::getName)
      );
      return maps;
   }