From 4da4a76899f62782867a136066e328b7e3ae146b Mon Sep 17 00:00:00 2001 From: Lemon Date: Wed, 9 Aug 2023 10:28:15 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9E=AA=E5=8F=A3=E4=BF=A1=E6=81=AF=E8=A1=A8?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0=20=20=E8=BD=A6=E4=BD=8D=E5=8F=B7=20=E5=AD=97?= =?UTF-8?q?=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/jsowell/pile/domain/PileConnectorInfo.java | 14 ++++++++++++++ .../mapper/pile/PileConnectorInfoMapper.xml | 9 +++++++-- .../lianlian/service/impl/LianLianServiceImpl.java | 1 + 3 files changed, 22 insertions(+), 2 deletions(-) diff --git a/jsowell-pile/src/main/java/com/jsowell/pile/domain/PileConnectorInfo.java b/jsowell-pile/src/main/java/com/jsowell/pile/domain/PileConnectorInfo.java index 33bcf4ec3..c4fcf29e1 100644 --- a/jsowell-pile/src/main/java/com/jsowell/pile/domain/PileConnectorInfo.java +++ b/jsowell-pile/src/main/java/com/jsowell/pile/domain/PileConnectorInfo.java @@ -43,6 +43,11 @@ public class PileConnectorInfo extends BaseEntity { @Excel(name = "状态") private String status; + /** + * 车位号 + */ + private String parkNo; + /** * 所属充电桩id */ @@ -86,6 +91,14 @@ public class PileConnectorInfo extends BaseEntity { return status; } + public String getParkNo() { + return parkNo; + } + + public void setParkNo(String parkNo) { + this.parkNo = parkNo; + } + public void setPileSn(String pileSn) { this.pileSn = pileSn; } @@ -109,6 +122,7 @@ public class PileConnectorInfo extends BaseEntity { .append("name", getName()) .append("pileConnectorCode", getPileConnectorCode()) .append("status", getStatus()) + .append("parkNo", getParkNo()) .append("pileId", getPileSn()) .append("createBy", getCreateBy()) .append("createTime", getCreateTime()) diff --git a/jsowell-pile/src/main/resources/mapper/pile/PileConnectorInfoMapper.xml b/jsowell-pile/src/main/resources/mapper/pile/PileConnectorInfoMapper.xml index 5e8fecae6..dab811679 100644 --- a/jsowell-pile/src/main/resources/mapper/pile/PileConnectorInfoMapper.xml +++ b/jsowell-pile/src/main/resources/mapper/pile/PileConnectorInfoMapper.xml @@ -9,6 +9,7 @@ + @@ -18,7 +19,7 @@ - select id, name, pile_connector_code, status, pile_sn, create_by, create_time, update_by, update_time, del_flag from pile_connector_info + select id, name, pile_connector_code, status, park_no, pile_sn, create_by, create_time, update_by, update_time, del_flag from pile_connector_info