|
@@ -32,9 +32,9 @@ namespace MySystem
|
|
|
AlipayMerchantIndirectIotBindRequest request = new AlipayMerchantIndirectIotBindRequest() ;
|
|
|
request.BizContent="{" +
|
|
|
" \"smid\":\"" + Smid + "\"," +
|
|
|
- " \"mode\":\"ALIYUN\"," +
|
|
|
- " \"device_id\":\"" + DeviceId + "\"" +
|
|
|
- // " \"supplier_id\":\"2022043454334\"" +
|
|
|
+ " \"mode\":\"SDK\"," +
|
|
|
+ " \"device_id\":\"" + DeviceId + "\"," +
|
|
|
+ " \"supplier_id\":\"202208101504455785\"" +
|
|
|
"}";
|
|
|
function.WriteLog(request.BizContent, "间连iot设备和间连商户绑定");
|
|
|
|
|
@@ -54,8 +54,64 @@ namespace MySystem
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
+ #region 间连iot设备和间连商户解绑
|
|
|
+ public string IotUnBind(string Smid, string DeviceId)
|
|
|
+ {
|
|
|
+ IAopClient client = new DefaultAopClient("https://openapi.alipay.com/gateway.do", AppId, PrivateKey, "json", "1.0", "RSA2", AlipayPublicKey, "utf-8", false);
|
|
|
+ AlipayMerchantIndirectIotUnbindRequest request= new AlipayMerchantIndirectIotUnbindRequest() ;
|
|
|
+ request.BizContent="{" +
|
|
|
+ " \"smid\":\"" + Smid + "\"," +
|
|
|
+ " \"mode\":\"SDK\"," +
|
|
|
+ " \"device_id\":\"" + DeviceId + "\"," +
|
|
|
+ " \"supplier_id\":\"202208101504455785\"" +
|
|
|
+ "}";
|
|
|
+ function.WriteLog(request.BizContent, "间连iot设备和间连商户解绑");
|
|
|
+
|
|
|
+ string result = "";
|
|
|
+ try
|
|
|
+ {
|
|
|
+ AlipayMerchantIndirectIotUnbindResponse response=client.Execute(request);
|
|
|
+ result = response.Body;
|
|
|
+ }
|
|
|
+ catch (Exception ex)
|
|
|
+ {
|
|
|
+ function.WriteLog(ex.ToString(), "间连iot设备和间连商户解绑异常");
|
|
|
+ result = "";
|
|
|
+ }
|
|
|
+ return result;
|
|
|
+ }
|
|
|
+
|
|
|
+ #endregion
|
|
|
+
|
|
|
+ #region 查询设备基础信息
|
|
|
+ public string IotDeviceQuery(string Sn)
|
|
|
+ {
|
|
|
+ IAopClient client = new DefaultAopClient("https://openapi.alipay.com/gateway.do", AppId, PrivateKey, "json", "1.0", "RSA2", AlipayPublicKey, "utf-8", false);
|
|
|
+ AlipayCommerceIotDeviceBaseinfoQueryRequest request= new AlipayCommerceIotDeviceBaseinfoQueryRequest() ;
|
|
|
+ request.BizContent="{" +
|
|
|
+ " \"sn\":\"" + Sn + "\"," +
|
|
|
+ " \"supplier_id\":\"202208101504455785\"" +
|
|
|
+ "}";
|
|
|
+ function.WriteLog(request.BizContent, "查询设备基础信息");
|
|
|
+
|
|
|
+ string result = "";
|
|
|
+ try
|
|
|
+ {
|
|
|
+ AlipayCommerceIotDeviceBaseinfoQueryResponse response=client.Execute(request);
|
|
|
+ result = response.Body;
|
|
|
+ }
|
|
|
+ catch (Exception ex)
|
|
|
+ {
|
|
|
+ function.WriteLog(ex.ToString(), "查询设备基础信息异常");
|
|
|
+ result = "";
|
|
|
+ }
|
|
|
+ return result;
|
|
|
+ }
|
|
|
+
|
|
|
+ #endregion
|
|
|
+
|
|
|
#region 到账播报
|
|
|
- public string IotTradeVoice(string BizTid, string Smid, string Amount, string TradeType = "ALIPAY_TRADE")
|
|
|
+ public string IotTradeVoice(string BizTid, string Smid, string TradeNo, string Amount, string TradeType = "ALIPAY_TRADE")
|
|
|
{
|
|
|
IAopClient client = new DefaultAopClient("https://openapi.alipay.com/gateway.do", AppId, PrivateKey, "json", "1.0", "RSA2", AlipayPublicKey, "utf-8", false);
|
|
|
AlipayCommerceIotDeviceTradevoiceSendRequest request= new AlipayCommerceIotDeviceTradevoiceSendRequest() ;
|
|
@@ -63,7 +119,7 @@ namespace MySystem
|
|
|
" \"biz_tid\":\"" + BizTid + "\"," +
|
|
|
" \"smid\":\"" + Smid + "\"," +
|
|
|
" \"trade_type\":\"" + TradeType + "\"," +
|
|
|
- // " \"trade_id\":\"5404dd23186a-4e62967a3bf0458cd3f4\"," +
|
|
|
+ " \"trade_id\":\"" + TradeNo + "\"," +
|
|
|
" \"amount\":\"" + Amount + "\"" +
|
|
|
// " \"msg_id\":\"202108020001101043\"" +
|
|
|
"}";
|