refactor: 注解从common移至core包下

This commit is contained in:
haoxr
2024-11-19 00:02:02 +08:00
parent 6b65644d9e
commit 943ae581b8
20 changed files with 53 additions and 36 deletions

View File

@@ -19,10 +19,11 @@ public class BasePageQuery implements Serializable {
@Serial
private static final long serialVersionUID = 1L;
@Schema(description = "页码", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
private int pageNum = 1;
@Schema(description = "每页记录数", requiredMode = Schema.RequiredMode.REQUIRED, example = "10")
private int pageSize = 10;
}