Skip to content

Commit ca29c1c

Browse files
committed
增加整合式支付頁支援代理商模式
1 parent 404db0e commit ca29c1c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+41976
-42
lines changed

PayuniSDK/Models/ParameterModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public class ParameterModel
1111
public string EncryptInfo { get; set; }
1212
public string HashInfo { get; set; }
1313
public string Status { get; set; }
14-
public string isPlatForm { get; set; }
14+
public string IsPlatForm { get; set; }
1515

1616
}
1717
}

PayuniSDK/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// 您可以指定所有的值,也可以使用 '*' 將組建和修訂編號
3333
// 設為預設,如下所示:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.0.0.0")]
36-
[assembly: AssemblyFileVersion("1.0.0.0")]
35+
[assembly: AssemblyVersion("1.10.8930.18610")]
36+
[assembly: AssemblyFileVersion("1.10.8930.18610")]

PayuniSDK/bin/Debug/payuniSDK.dll

0 Bytes
Binary file not shown.

PayuniSDK/bin/Debug/payuniSDK.pdb

2 KB
Binary file not shown.
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
adcea7554a8a72d2a0f189525feed10c8fd57000
1+
98226f0c83698b7d2b4db14612e5f06927e92250

PayuniSDK/obj/Debug/payuniSDK.csproj.FileListAbsolute.txt

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,14 @@ D:\payuni\payuniSDK\obj\Debug\payuniSDK.csproj.CoreCompileInputs.cache
2020
D:\payuni\payuniSDK\obj\Debug\payuniSDK.csproj.CopyComplete
2121
D:\payuni\payuniSDK\obj\Debug\payuniSDK.dll
2222
D:\payuni\payuniSDK\obj\Debug\payuniSDK.pdb
23+
C:\Users\ray.luo\Downloads\NET_SDK-main\payuniSDK\bin\Debug\payuniSDK.dll
24+
C:\Users\ray.luo\Downloads\NET_SDK-main\payuniSDK\bin\Debug\payuniSDK.pdb
25+
C:\Users\ray.luo\Downloads\NET_SDK-main\payuniSDK\bin\Debug\BouncyCastle.Crypto.dll
26+
C:\Users\ray.luo\Downloads\NET_SDK-main\payuniSDK\bin\Debug\Newtonsoft.Json.dll
27+
C:\Users\ray.luo\Downloads\NET_SDK-main\payuniSDK\bin\Debug\BouncyCastle.Crypto.xml
28+
C:\Users\ray.luo\Downloads\NET_SDK-main\payuniSDK\bin\Debug\Newtonsoft.Json.xml
29+
C:\Users\ray.luo\Downloads\NET_SDK-main\payuniSDK\obj\Debug\payuniSDK.csproj.AssemblyReference.cache
30+
C:\Users\ray.luo\Downloads\NET_SDK-main\payuniSDK\obj\Debug\payuniSDK.csproj.CoreCompileInputs.cache
31+
C:\Users\ray.luo\Downloads\NET_SDK-main\payuniSDK\obj\Debug\payuniSDK.csproj.CopyComplete
32+
C:\Users\ray.luo\Downloads\NET_SDK-main\payuniSDK\obj\Debug\payuniSDK.dll
33+
C:\Users\ray.luo\Downloads\NET_SDK-main\payuniSDK\obj\Debug\payuniSDK.pdb

PayuniSDK/obj/Debug/payuniSDK.dll

0 Bytes
Binary file not shown.

PayuniSDK/obj/Debug/payuniSDK.pdb

2 KB
Binary file not shown.

PayuniSDK/payuniAPI.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,6 +256,7 @@ private string HtmlApi()
256256
htmlprint += "<input name='Version' type='hidden' value='" + Parameter.Version + "' />";
257257
htmlprint += "<input name='EncryptInfo' type='hidden' value='" + Parameter.EncryptInfo + "' />";
258258
htmlprint += "<input name='HashInfo' type='hidden' value='" + Parameter.HashInfo + "' />";
259+
htmlprint += "<input name='IsPlatForm' type='hidden' value='" + Parameter.IsPlatForm + "' />";
259260
htmlprint += "</form></body></html>";
260261
return htmlprint;
261262
}
@@ -340,7 +341,7 @@ private void SetParams(string type = "")
340341
Parameter.Version = "1.0";
341342
Parameter.EncryptInfo = Encrypt();
342343
Parameter.HashInfo = Hash(Parameter.EncryptInfo);
343-
Parameter.isPlatForm = isPlatForm;
344+
Parameter.IsPlatForm = isPlatForm;
344345

345346
ApiUrl = ApiUrl + type;
346347
}

0 commit comments

Comments
 (0)