mybatis 查询list,内容为null,但list的size 为1
List<Integer> cityList = resourcePartnerService.selectCityList(userId);
需要在SQL里where语句加上 字段不为null,因为这个字段为null的数据存在。
List<Integer> cityList = resourcePartnerService.selectCityList(userId);
需要在SQL里where语句加上 字段不为null,因为这个字段为null的数据存在。