package com.shequ.controller.api; import com.alibaba.fastjson.JSON; import com.shequ.pojo.Goods; import com.shequ.pojo.Message; import com.shequ.service.GoodsService; import com.shequ.service.MessageService; import com.shequ.service.RepairService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.ResponseBody; import java.util.List; @Controller public class GoodsApi { @Autowired GoodsService goodsService; /* 微信小程序端提供json接口的。显示所有二手数据 */ @ResponseBody @RequestMapping(value = "/findAllGoods",produces="application/json;charset=UTF-8") public String findAllGoods(){ List<Goods> goods = goodsService.findAllGoods(); String result = JSON.toJSONString(goods); System.out.println(result); return result; } @ResponseBody @RequestMapping(value = "/findGoodsById",produces="application/json;charset=UTF-8") public String findGoodsById(String id){ Goods goods = goodsService.findGoodsById(id); String result = JSON.toJSONString(goods); System.out.println(result); return result; } }

DFwang LV5
3月14日
新哥新奇士橙 LV4
1月26日
zolscy LV24
2024年11月27日
唐僧洗头爱飘柔 LV22
2024年9月13日
lo8lukoukoum LV4
2024年4月9日
ningningnn LV3
2024年2月24日
晴曛 LV6
2023年12月29日
阿狸哦 LV2
2023年12月2日
lzpsuifeng LV3
2023年10月13日
348835269 LV11
2023年9月27日