|
@@ -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;
|
|
|
+ }
|
|
|
}
|