| | |
| | | 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; |
| | |
| | | /** |
| | | * 标签 |
| | | * |
| | | * @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)); |
| | | } |
| | | |
| | | } |