Closed liwenchao1984 closed 2 years ago
@liwenchao1984 Adjusting the order of get methods in an interface is pointless; the default field order will be used, and of course, there won't be any support for this. The significance of this field order is minimal.
Your Environment
Expected Behavior
In the controller, I have a distributed interface
public Resp<Page<SysUser>> page();
. I am using pagination from MyBatisPlus, overriding the source code ofcom.baomidou.mybatisplus.extension.plugins.pagination.Page
. I hope that when generating the documentation, the field order is: current, size, total, pagesCurrent Behavior
size, total, pages, current
Context (Bug Impact Description)
I would like to ask how to control the field order.