|
|
@@ -68,6 +68,10 @@ public class ParkingWalletFeeService {
|
|
|
*/
|
|
|
public ParkingWalletFeeResp queryTotalServerFee(ParkingWalletFeeTotalQueryParam param) {
|
|
|
log.info("查询汇总服务费:{}", JSON.toJSONString(param));
|
|
|
+ if (param.getSupEntId() != null) {
|
|
|
+ param.setSupEntId(551429255406292993L);
|
|
|
+ }
|
|
|
+
|
|
|
//构建查询条件
|
|
|
LambdaQueryWrapper<KwtParkingWalletFee> wrapper = buildAndExecuteQuery(param);
|
|
|
|
|
|
@@ -145,6 +149,9 @@ public class ParkingWalletFeeService {
|
|
|
*/
|
|
|
public PageDataResult<ParkingWalletFeeResp> pageQueryServerFee(ParkingWalletFeeQueryParam param) {
|
|
|
log.info("分页查询服务费:{}", JSON.toJSONString(param));
|
|
|
+ if (param.getSupEntId() != null) {
|
|
|
+ param.setSupEntId(551429255406292993L);
|
|
|
+ }
|
|
|
|
|
|
//构建查询条件
|
|
|
LambdaQueryWrapper<KwtParkingWalletFee> wrapper = buildAndExecuteQuery(param);
|
|
|
@@ -205,6 +212,10 @@ public class ParkingWalletFeeService {
|
|
|
@Transactional(rollbackFor = Exception.class)
|
|
|
public void saveServerFee(ParkingWalletFeeSaveParam param) {
|
|
|
log.info("保存服务费,param:{}", JSON.toJSONString(param));
|
|
|
+ if (param.getSupEntId() != null) {
|
|
|
+ param.setSupEntId(551429255406292993L);
|
|
|
+ }
|
|
|
+
|
|
|
KwtParkingWalletFee walletFee = parkingWalletFeeRepository.getById(param.getId());
|
|
|
if (walletFee == null) {
|
|
|
throw new BusinessPlatfromException(ErrorCodeEnum.DRIVER_NOT_FOUND, "服务费信息不存在");
|
|
|
@@ -232,7 +243,9 @@ public class ParkingWalletFeeService {
|
|
|
*/
|
|
|
public PageDataResult<ParkingWalletFeeBalanceResp> pageQueryServerFeeDetails(ParkingWalletFeeBalanceQueryParam param) {
|
|
|
log.info("分页查询服务费明细:{}", JSON.toJSONString(param));
|
|
|
-
|
|
|
+ if (param.getSupEntId() != null) {
|
|
|
+ param.setSupEntId(551429255406292993L);
|
|
|
+ }
|
|
|
//构建查询条件
|
|
|
LambdaQueryWrapper<KwtParkingWalletFeeBalance> wrapper = buildAndExecuteQuery(param);
|
|
|
|