From e88d34fd4cbe3a0cc57ecfdc1710d66bc88e26b5 Mon Sep 17 00:00:00 2001 From: zhubaomin <zhubaomin> Date: 星期二, 10 六月 2025 14:07:53 +0800 Subject: [PATCH] Merge branch 'master' of http://8.140.179.55:20000/r/pipIrr-SV --- pipIrr-platform/pipIrr-common/src/main/java/com/dy/common/webUtil/QueryResultVo.java | 10 ++++++++++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/pipIrr-platform/pipIrr-common/src/main/java/com/dy/common/webUtil/QueryResultVo.java b/pipIrr-platform/pipIrr-common/src/main/java/com/dy/common/webUtil/QueryResultVo.java index 41344a3..0f9e27e 100644 --- a/pipIrr-platform/pipIrr-common/src/main/java/com/dy/common/webUtil/QueryResultVo.java +++ b/pipIrr-platform/pipIrr-common/src/main/java/com/dy/common/webUtil/QueryResultVo.java @@ -53,6 +53,16 @@ @JSONField(serialize = false) public Integer queryCount ; + public void copyTo(QueryResultVo to){ + to.pageSize = this.pageSize ; + to.itemTotal = this.itemTotal ; + to.pageCurr = this.pageCurr ; + to.pageTotal = this.pageTotal ; + to.obj = this.obj ; + to.queryStart = this.queryStart ; + to.queryCount = this.queryCount ; + } + public void calculateAndSet(Long itemTotal, Map<String, Object> params) { this.itemTotal = itemTotal ; -- Gitblit v1.8.0