From eca6412fa29bc0fefdd5b9e99d704fa7d258f4a1 Mon Sep 17 00:00:00 2001
From: sunpengfei <i@angelzzz.com>
Date: 星期四, 12 六月 2025 11:29:30 +0800
Subject: [PATCH] fix:去掉更新渠道表

---
 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