JSON.toJSONString 是将对象转化为Json字符串
JSON.parseObject 是将Json字符串转化为相应的对象;
JSON.parseArray 是将Json字符串转化为相应对象的集合
JSON.toJSONString
BaseProductMainVo baseProductMainVo =new BaseProductMainVo();
String s = JSON.toJSONString(baseProductMainVo);
JSON.p