From 8df1acf49df7410758e83bcea094a5e5707d4529 Mon Sep 17 00:00:00 2001 From: 艾金辉 <1144154118@qq.com> Date: 星期六, 22 七月 2023 16:44:15 +0800 Subject: [PATCH] 根据carId获取车辆 --- ruoyi-common/src/main/java/com/ruoyi/common/core/domain/BaseEntity.java | 25 +++++++++++++++++++++++-- 1 files changed, 23 insertions(+), 2 deletions(-) diff --git a/ruoyi-common/src/main/java/com/ruoyi/common/core/domain/BaseEntity.java b/ruoyi-common/src/main/java/com/ruoyi/common/core/domain/BaseEntity.java index f45644c..0dfe7a0 100644 --- a/ruoyi-common/src/main/java/com/ruoyi/common/core/domain/BaseEntity.java +++ b/ruoyi-common/src/main/java/com/ruoyi/common/core/domain/BaseEntity.java @@ -14,7 +14,7 @@ * * @author ruoyi */ -@JsonInclude(JsonInclude.Include.NON_NULL)//璇ユ敞瑙h繃婊や负绌虹殑瀛楁 +//@JsonInclude(JsonInclude.Include.NON_NULL)//璇ユ敞瑙h繃婊や负绌虹殑瀛楁 public class BaseEntity implements Serializable { private static final long serialVersionUID = 1L; @@ -48,9 +48,30 @@ /** 璇锋眰鍙傛暟 */ @JsonInclude(JsonInclude.Include.NON_EMPTY) - @ApiModelProperty(value = "鍔ㄦ�佸弬鏁�", name = "params", notes = "鏍规嵁涓嶅悓鐨勬煡璇㈠瓧娈佃嚜鐢遍厤缃弬鏁�", required = true) + @ApiModelProperty(value = "鍔ㄦ�佸弬鏁�", name = "params", notes = "鏍规嵁涓嶅悓鐨勬煡璇㈠瓧娈佃嚜鐢遍厤缃弬鏁�") private Map<String, Object> params; + @ApiModelProperty(value = "椤电爜", name = "pageNum", notes = "椤电爜", required = true) + private Integer pageNum; + @ApiModelProperty(value = "椤靛ぇ灏�", name = "pageSize", notes = "椤靛ぇ灏�", required = true) + private Integer pageSize; + + public Integer getPageNum() { + return pageNum; + } + + public void setPageNum(Integer pageNum) { + this.pageNum = pageNum; + } + + public Integer getPageSize() { + return pageSize; + } + + public void setPageSize(Integer pageSize) { + this.pageSize = pageSize; + } + public String getSearchValue() { return searchValue; -- Gitblit v1.9.3