如果我更改此方法:
public void setCustom(Map<String, Object> custom) {
this.custom = (LinkedHashMap<String, Object>)custom;
}
为:
public void setCustom(LinkedHashMap<String, Object> custom) {
this.custom = custom;
}
我必须更新serialVersionUID吗?这是兼容的改变吗?