浏览代码

电子处方药品查询添加参数

lighter 6 月之前
父节点
当前提交
682143e54a

+ 6 - 0
src/main/java/thyyxxk/webserver/entity/medicalinsurance/digitalreceipt/request/MedicineInquiry.java

@@ -11,8 +11,14 @@ public class MedicineInquiry {
     private Integer pageNum;
     private Integer pageSize;
     private Boolean needSaving;
+    // 是否只下载当前传参的页码
+    private Boolean onlyCurrentPage;
 
     public Boolean needSaving() {
         return null != this.needSaving && this.needSaving;
     }
+
+    public Boolean onlyCurrentPage() {
+        return null != this.onlyCurrentPage && this.onlyCurrentPage;
+    }
 }