zrj
2024-08-30 d88ce8f933df6a533eddb06f0f2e340a2c697001
src/main/java/org/springblade/modules/life/controller/LifeController.java
@@ -36,7 +36,7 @@
import org.springblade.modules.life.vo.LifeVO;
import org.springblade.modules.life.service.ILifeService;
import org.springblade.core.boot.ctrl.BladeController;
import sun.misc.BASE64Encoder;
//import sun.misc.BASE64Encoder;
import java.io.IOException;
import java.net.URLEncoder;
@@ -185,12 +185,12 @@
   /**
    * 标签
    *
    * @param lifetype 生活设施类型
    * @param life 生活设施类型
    * @return
    */
   @GetMapping("/selectList")
   public R selectList(String lifetype) {
      return R.data(lifeService.selectList(lifetype));
   public R selectList(LifeVO life) {
      return R.data(lifeService.selectList(life));
   }
}