我在寻找的代码中看到了类似这样的类,并且想知道如何 它是生成的,看起来像是由插件生成的还是由eclipse本身生成的,我知道eclipse可以为您的向导创建POJO文件,但是如何获得如下所示的结果?
public class Item implements Serializable{
private static final long serialVersionUID = 3868244754652312286L;
@JsonProperty("name")
private String name;
@JsonProperty("quantity")
private String quantity;
@JsonProperty("price")
private String price;
@JsonProperty("tax")
private String tax;
@JsonProperty("sku")
private String sku;
@JsonProperty("originalPrice")
private String originalPrice;
@JsonIgnore
private HashMap<String, Object> additionalProperties = new HashMap<>();
@JsonProperty("name")
public String getName() {
return name;
}
@JsonProperty("name")
public void setName(String name) {
this.name = name;
}