Skip to content

Commit

Permalink
Merge pull request alibaba#179 from wzslw/master
Browse files Browse the repository at this point in the history
统一serialVersionUID声明
  • Loading branch information
significantfrank authored May 28, 2021
2 parents 14c94b2 + 3b51b45 commit 2d437af
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 2d437af

Please sign in to comment.