1234567891011121314151617181920212223242526272829303132 |
- using System;
- using System.Collections.Generic;
- using System.Web;
- namespace LYFZ.WxPayAPI
- {
- public class DownloadBill
- {
-
- public static string Run(string bill_date, string bill_type)
- {
- Log.Info("DownloadBill", "DownloadBill is processing...");
- WxPayData data = new WxPayData();
- data.SetValue("bill_date", bill_date);
- data.SetValue("bill_type", bill_type);
- WxPayData result = WxPayApi.DownloadBill(data);
- Log.Info("DownloadBill", "DownloadBill process complete, result : " + result.ToXml());
- return result.ToPrintStr();
- }
- }
- }
|