fix: 修改代码中的默认serialVersionUID
This commit is contained in:
@@ -42,5 +42,5 @@ public class ReportContentEntity implements Serializable {
|
||||
private String reportContent;
|
||||
|
||||
@TableField(exist = false)
|
||||
private static final long serialVersionUID = 1L;
|
||||
private static final long serialVersionUID = 1213467213486L;
|
||||
}
|
||||
@@ -41,6 +41,6 @@ public class ReportLabelEntity implements Serializable {
|
||||
private String labelId;
|
||||
|
||||
@TableField(exist = false)
|
||||
private static final long serialVersionUID = 1L;
|
||||
private static final long serialVersionUID = 121348721347890417L;
|
||||
|
||||
}
|
||||
@@ -59,6 +59,6 @@ public class TreeLabelEntity implements Serializable {
|
||||
private Double orderNum;
|
||||
|
||||
@TableField(exist = false)
|
||||
private static final long serialVersionUID = 1L;
|
||||
private static final long serialVersionUID = 11283747892134701L;
|
||||
|
||||
}
|
||||
@@ -20,6 +20,9 @@ import lombok.NoArgsConstructor;
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
public class ConfigEntity implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 23487320957329L;
|
||||
|
||||
/**
|
||||
* 主键id
|
||||
*/
|
||||
@@ -38,6 +41,4 @@ public class ConfigEntity implements Serializable {
|
||||
@TableField(value = "config_value")
|
||||
private String configValue;
|
||||
|
||||
@TableField(exist = false)
|
||||
private static final long serialVersionUID = 1L;
|
||||
}
|
||||
Reference in New Issue
Block a user