Skip to content

Commit

Permalink
统一serialVersionUID声明
Browse files Browse the repository at this point in the history
  • Loading branch information
wzslw committed Feb 8, 2021
1 parent 6d6149b commit 3b51b45
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
* @author jacky
*/
public abstract class PageQuery extends Query {
private static final long serialVersionUID = 1L;

public static final String ASC = "ASC";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@
*/
public abstract class Scope extends DTO {

private static final long serialVersionUID = 1L;
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
*/
public class SingleResponse<T> extends Response {

private static final long serialVersionUID = 1L;

private T data;

public T getData() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*/
public class SysException extends BaseException {

private static final long serialVersionUID = 4355163994767354840L;
private static final long serialVersionUID = 1L;

private static final String DEFAULT_ERR_CODE = "SYS_ERROR";

Expand Down

0 comments on commit 3b51b45

Please sign in to comment.