摘要:
1.上传文件到linux服务器 可以选择,tabby,或者是WinScp,putty其他第三方工具上传文件。 并解压 2.安装基础环境SDK 1.注册Microsoft密钥 sudo rpm -Uvh https://packages.microsoft.com/config/rhel/7/pack 阅读全文
摘要:
/// <summary> /// 返回封装 /// </summary> /// <param name="statusCode"></param> /// <returns></returns> public static JsonResult toResponse(StatusCodeType 阅读全文
摘要:
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApp.DDUP { public 阅读全文
摘要:
-- 经典管理系统权限设计 -- 需要五个表 -- 用户表Sys_User -- 角色表Sys_Role -- 权限表Sys_Power -- 角色权限关联表(1:N)Sys_RolePower -- 用户角色关联表(1:N)Sys_UserRole -- 用户表存储用户信息 -- 角色表存储角色信 阅读全文
摘要:
nuget 引入QRCode组件 此方法会生成二维码并保存成图片 using QRCoder; using System; using System.Collections.Generic; using System.Drawing.Imaging; using System.Linq; using 阅读全文
摘要:
nuget引入NLog组件 NLog.config 记得改为始终复制 <?xml version="1.0" ?> <nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" xmlns:xsi="http://www.w3.org/2001 阅读全文
摘要:
先引用 using iTextSharp.text;using iTextSharp.text.pdf; public static string MergePdf(List<string> list, string merFilePath, bool isDelOldFile = true) { 阅读全文
摘要:
/// <summary> /// list分片 /// </summary> /// <typeparam name="T"></typeparam> /// <param name="list"></param> /// <param name="blockSize"></param> /// 阅读全文
摘要:
需要nuget 安装FreeSpire.XLS Free为免费版不会带水印 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tas 阅读全文
摘要:
using MySql.Data.MySqlClient; using System; using System.Collections.Generic; using System.Data.SqlClient; using System.Linq; using System.Text; using 阅读全文