mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-05-02 00:49:59 +08:00
后管页面新增 停车平台配置
This commit is contained in:
@@ -130,6 +130,9 @@ public class PileStationInfoServiceImpl implements IPileStationInfoService {
|
||||
vo.setId(pileStationInfo.getId().toString());
|
||||
vo.setAreaCode(pileStationInfo.getAreaCode());
|
||||
vo.setAddress(pileStationInfo.getAddress());
|
||||
if (StringUtils.isNotBlank(pileStationInfo.getParkingId())) {
|
||||
vo.setParkingId(pileStationInfo.getParkingId());
|
||||
}
|
||||
if (StringUtils.isNotBlank(pileStationInfo.getQrcodePrefix())) {
|
||||
vo.setQrcodePrefix(pileStationInfo.getQrcodePrefix());
|
||||
}
|
||||
|
||||
@@ -6,6 +6,8 @@ import com.jsowell.pile.service.IThirdPartyParkingConfigService;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* TODO
|
||||
*
|
||||
@@ -49,4 +51,12 @@ public class ThirdPartyParkingConfigServiceImpl implements IThirdPartyParkingCon
|
||||
return thirdpartyParkingConfigMapper.updateByPrimaryKey(record);
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询基本信息列表(调用时需分页)
|
||||
*/
|
||||
@Override
|
||||
public List<ThirdpartyParkingConfig> selectInfoList() {
|
||||
return thirdpartyParkingConfigMapper.selectInfoList();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user