POXM添加依赖
com.alibaba
fastjson
1.2.47
@RequestMapping("check1")
public JSonObject check1(Check_Goods check_goods){
JSonObject rs = new JSONObject();
System.out.println(goodsServiceImp.check1(check_goods));
Tishi sts1 = goodsServiceImp.check1(check_goods);
if (sts1.get提示().equals("")){
rs.put("code","1");
rs.put("msg","确认成功");
return rs;
}else {
rs.put("code","0");
rs.put("msg",sts1.get提示());
return rs;
} }



