Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PageInfo类请按规范注释 #547

Closed
1 task done
nnzbz opened this issue Aug 27, 2020 · 0 comments
Closed
1 task done

PageInfo类请按规范注释 #547

nnzbz opened this issue Aug 27, 2020 · 0 comments

Comments

@nnzbz
Copy link

nnzbz commented Aug 27, 2020

  • 我已在 issues 搜索类似问题,并且不存在相同的问题.

原代码

public class PageInfo<T> extends PageSerializable<T> {
    public static final int DEFAULT_NAVIGATE_PAGES = 8;
    //当前页
    private int pageNum;
    //每页的数量
    private int pageSize;
    //当前页的数量
    private int size;

    ......

期望的结果:

public class PageInfo<T> extends PageSerializable<T> {
    public static final int DEFAULT_NAVIGATE_PAGES = 8;
    /**
     * 当前页
     */
    private int pageNum;
    /**
     * 每页的数量
     */
    private int pageSize;
    /**
     * 当前页的数量
     */
    private int size;

    ......
@abel533 abel533 closed this as completed in ce3bfb0 Jun 6, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant