摘要: 1.上传文件到linux服务器 可以选择,tabby,或者是WinScp,putty其他第三方工具上传文件。 并解压 2.安装基础环境SDK 1.注册Microsoft密钥 sudo rpm -Uvh https://packages.microsoft.com/config/rhel/7/pack 阅读全文
posted @ 2022-11-15 21:05 互联网CV工程师 阅读(1315) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 返回封装 /// </summary> /// <param name="statusCode"></param> /// <returns></returns> public static JsonResult toResponse(StatusCodeType 阅读全文
posted @ 2022-11-01 14:51 互联网CV工程师 阅读(117) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApp.DDUP { public 阅读全文
posted @ 2022-11-01 14:39 互联网CV工程师 阅读(15) 评论(0) 推荐(0) 编辑
摘要: -- 经典管理系统权限设计 -- 需要五个表 -- 用户表Sys_User -- 角色表Sys_Role -- 权限表Sys_Power -- 角色权限关联表(1:N)Sys_RolePower -- 用户角色关联表(1:N)Sys_UserRole -- 用户表存储用户信息 -- 角色表存储角色信 阅读全文
posted @ 2022-10-14 10:06 互联网CV工程师 阅读(103) 评论(0) 推荐(0) 编辑
摘要: nuget 引入QRCode组件 此方法会生成二维码并保存成图片 using QRCoder; using System; using System.Collections.Generic; using System.Drawing.Imaging; using System.Linq; using 阅读全文
posted @ 2022-10-09 09:41 互联网CV工程师 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 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 阅读全文
posted @ 2022-09-29 16:58 互联网CV工程师 阅读(189) 评论(0) 推荐(0) 编辑
摘要: 先引用 using iTextSharp.text;using iTextSharp.text.pdf; public static string MergePdf(List<string> list, string merFilePath, bool isDelOldFile = true) { 阅读全文
posted @ 2022-09-08 20:08 互联网CV工程师 阅读(166) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// list分片 /// </summary> /// <typeparam name="T"></typeparam> /// <param name="list"></param> /// <param name="blockSize"></param> /// 阅读全文
posted @ 2022-09-03 21:06 互联网CV工程师 阅读(179) 评论(0) 推荐(0) 编辑
摘要: 需要nuget 安装FreeSpire.XLS Free为免费版不会带水印 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tas 阅读全文
posted @ 2022-09-01 15:18 互联网CV工程师 阅读(485) 评论(0) 推荐(0) 编辑
摘要: using MySql.Data.MySqlClient; using System; using System.Collections.Generic; using System.Data.SqlClient; using System.Linq; using System.Text; using 阅读全文
posted @ 2022-08-22 18:36 互联网CV工程师 阅读(45) 评论(0) 推荐(0) 编辑