Class:Package:
Please paste the Json code to generate JavaBean

Json generates Java entity class tools, Json generates JavaBean code

1, paste json content, Javabean The class name and package name can automatically generate JavaBean code, and can directly package and download the source code

2, support the generation of Javabean entity classes from any complex/simple format Json string

3, Provide Json format error prompts, will not format non-standard Json strings, ensure the accuracy of Javabean entity classes

4, if your Json fields contain system keywords, you cannot arbitrarily When modifying the field name, you can refer to using the annotation in Gson to create an alias: @serializableName to solve this problem. Below is a before and after comparison:

private List< Default > default;

@SerializedName("default")

private List< Default > mdefault;

your footprint: