From ad8e329a739839bf5ce80b42d931b655c2c20356 Mon Sep 17 00:00:00 2001
From: sunpengfei <i@angelzzz.com>
Date: 星期一, 09 六月 2025 15:40:30 +0800
Subject: [PATCH] feat:新增接口x2 GET​/api​/Promoter​/GetChannelConsultationById获取渠道咨询Id GET​/api​/Promoter​/GetPromoter获取推广员信息

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