From 70c08d5a565139b440b73d8b9d9c8c20c7942cd6 Mon Sep 17 00:00:00 2001
From: lingling <kety1122@163.com>
Date: 星期五, 14 三月 2025 15:11:23 +0800
Subject: [PATCH] 添加逻辑

---
 LifePayment/LifePayment.Domain.Shared/ACOOLY/ACOOLYInput.cs |   37 ++++++++++++++++++++++++++++++-------
 1 files changed, 30 insertions(+), 7 deletions(-)

diff --git a/LifePayment/LifePayment.Domain.Shared/ACOOLY/ACOOLYInput.cs b/LifePayment/LifePayment.Domain.Shared/ACOOLY/ACOOLYInput.cs
index a55ccd9..84e4b6d 100644
--- a/LifePayment/LifePayment.Domain.Shared/ACOOLY/ACOOLYInput.cs
+++ b/LifePayment/LifePayment.Domain.Shared/ACOOLY/ACOOLYInput.cs
@@ -1,10 +1,7 @@
 锘縰sing Newtonsoft.Json;
 using System;
-using System.Collections.Generic;
 using System.ComponentModel.DataAnnotations;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
+using ZeroD.Util;
 
 namespace LifePayment.Domain.Shared;
 
@@ -85,6 +82,21 @@
     [JsonProperty("gasOrgType")]
     public string GasOrgType { get; set; }
 
+}
+
+public class GasOrgTypeRequestInput : ACOOLYRequestBaseInput
+{
+    /// <summary>
+    /// 澶栭儴鍟嗘埛璁㈠崟鍙�
+    /// </summary>
+    [JsonProperty("outOrderNo")]
+    public string OutOrderNo { get; set; }
+
+    /// <summary>
+    /// 骞冲彴璁㈠崟鍙�
+    /// </summary>
+    [JsonProperty("busiOrderNo")]
+    public string BusiOrderNo { get; set; }
 }
 
 /// <summary>
@@ -231,8 +243,11 @@
     [JsonProperty("name")]
     public string Name { get; set; }
 }
-
-public class SetLifePayOrderPayTypeInput
+public class ChannelsBaseInput : PageInput
+{
+    public string CheckChannelId { get; set; }
+}
+public class SetLifePayOrderPayTypeInput : ChannelsBaseInput
 {
     [Required(ErrorMessage = "璁㈠崟鍙蜂笉鍙负绌�")]
     public string OrderNo { get; set; }
@@ -252,9 +267,10 @@
     /// </summary>
     public string Attach { get; set; }
 
+
 }
 
-public class GetPayOrderForJsAPIInput
+public class GetPayOrderForJsAPIInput : ChannelsBaseInput
 {
     [Required(ErrorMessage = "璁㈠崟鍙蜂笉鍙负绌�")]
     public string OrderNo { get; set; }
@@ -272,4 +288,11 @@
     /// </summary>
     public string Attach { get; set; }
 
+    /// <summary>
+    /// 鏀粯搴旂敤鐨刟ppId
+    /// </summary>
+    public string PayAppId { get; set; }
+
+    //public string CheckChannelId { get; set; }
+
 }
\ No newline at end of file

--
Gitblit v1.9.1