JSONObject data=new JSONObject();
BrandDto bDto=new BrandDto(0, "xx", "xx", 1);
JSONObject two=(JSONObject) JSONObject.toJSON(bDto);
System.out.println(two.toString()+"##"+JSONObject.toJSON(bDto));
System.out.println(data.toJSON(bDto));
JSONObject jo=new JSONObject();
data=(JSONObject) data.toJSON(bDto);
System.out.println("##"+data.toString());data