From 7a540f529d2c9a541993bc9818cad9c9093fec91 Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期三, 03 十二月 2025 11:04:35 +0800
Subject: [PATCH] fix: bug
---
LifePayment/LifePayment.Domain/ACOOLY/ACOOLYManager.cs | 30 +++++++++++++++++++-----------
1 files changed, 19 insertions(+), 11 deletions(-)
diff --git a/LifePayment/LifePayment.Domain/ACOOLY/ACOOLYManager.cs b/LifePayment/LifePayment.Domain/ACOOLY/ACOOLYManager.cs
index be502bc..5fb7191 100644
--- a/LifePayment/LifePayment.Domain/ACOOLY/ACOOLYManager.cs
+++ b/LifePayment/LifePayment.Domain/ACOOLY/ACOOLYManager.cs
@@ -1,17 +1,7 @@
-锘縰sing LifePayment.Application;
-using LifePayment.Application.Contracts;
-using LifePayment.Domain.Shared;
-using Microsoft.AspNetCore.Components.Forms;
+锘縰sing LifePayment.Domain.Shared;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
using System.Threading.Tasks;
-using Volo.Abp.Domain.Services;
-using Volo.Abp.Users;
-using ZeroD.Util.Fadd;
namespace LifePayment.Domain;
@@ -37,6 +27,12 @@
{
SetBaseInfo(input, ACOOLYConstant.Sevice.GasParValue);
return await PostAsync<GasParValueRequestInput, GasParValueResponse>(input);
+ }
+
+ public async Task<GasOrgTypeValueResponse> GasOrgType(GasOrgTypeRequestInput input)
+ {
+ SetBaseInfo(input, ACOOLYConstant.Sevice.QueryGasOrgType);
+ return await PostAsync<GasOrgTypeRequestInput, GasOrgTypeValueResponse>(input);
}
/// <summary>
@@ -154,6 +150,18 @@
#region 璇濊垂
/// <summary>
+ /// 璇濊垂璁㈠崟鏌ヨ
+ /// </summary>
+ /// <param name="input"></param>
+ /// <returns></returns>
+ public async Task<QueryPhoneOrderResponse> QueryPhoneOrder(QueryPhoneOrderRequestInput input)
+ {
+ SetBaseInfo(input, ACOOLYConstant.Sevice.QueryPhoneOrder);
+
+ return await PostAsync<QueryPhoneOrderRequestInput, QueryPhoneOrderResponse>(input);
+ }
+
+ /// <summary>
/// 鑾峰彇璇濊垂闈㈠��
/// </summary>
/// <param name="input"></param>
--
Gitblit v1.9.1