摘要:
接口官方文档 https://docs.open.alipay.com/203/107090/ 首先在Nuget 安装 Alipay /// <summary> /// 支付宝支付 /// </summary> /// <param name="model"></param> /// <param 阅读全文
摘要:
//组合xml内容 StringBuilder strBuilder = new StringBuilder(); var par= @"<xml> <appid>wx2421b1c4370ec43b</appid> <attach>支付测试</attach> <body>H5支付测试</body> <mch_id>10000100</mch_id> <nonce_str>1add1a30ac87 阅读全文
摘要:
using System; using System.Collections.Generic; using System.Configuration; using System.Data; using System.Data.SqlClient; using System.Linq; using System.Text; using System.Threading.Tasks; namesp... 阅读全文
摘要:
private static void setlog(string message) { string logPath = System.AppDomain.CurrentDomain.BaseDirectory + "\\log\\"; if (!Directory.Exists(logPath))//没有则创建 { Directory.CreateDirectory(logPath); } u 阅读全文
摘要:
/// /// 获取token /// /// /// public JsonResult GetToken(string staffId) { ResultMsg resultMsg = null; //判断参数是否合法 ... 阅读全文
摘要:
Nginx简介 Nginx是一款高性能的http 服务器/反向代理服务器及电子邮件(IMAP/POP3)代理服务器。由俄罗斯的程序设计师开发,官方测试nginx能够支支撑5万并发链接,并且cpu、内存等资源消耗却非常低,运行非常稳定。由于Nginx 超越 Apache 的高性能和稳定性,使得国内使用 阅读全文
摘要:
/// <summary> /// 企业信息Excel批量导入 需要先引入NPOI /// </summary> /// <returns></returns> public ActionResult ImportEnterpriseInfomation() { var success = fals 阅读全文
摘要:
DECLARE @pagesize INT= 10; --每页10条 DECLARE @page INT = 1; --第几页 SET STATISTICS TIME ON; SELECT * FROM ( SELECT ROW_NUMBER() OVER ( ORDER BY id ASC ) AS rownumber , * ... 阅读全文
摘要:
DECLARE cursor_name CURSOR FOR --定义游标 SELECT REPLACE(JSURL,'&FP=1&FP=1','&FP=1'),JSImgID FROM [srv_lnk_wps].wps_jt_2017.dbo.T_JSURL0331 WHERE JSImgID IS NOT NULL AND JSURL IS NOT NULL GROUP BY JSImg... 阅读全文
摘要:
ffmpeg version N-49044-g89afa63 Copyright (c) 2000-2013 the FFmpeg developers built on Jan 19 2013 20:36:06 with gcc 4.7.2 (GCC) configuration: --enab 阅读全文