摘要: 需要定义自定义模块 <script> // 自定义模块 layui.config({ base: '../../assets/layui/tables/', // 模块目录 version: 'v1.6.0' }).extend({ // 模块别名 soulTable: 'tableChild' } 阅读全文
posted @ 2021-05-28 14:34 是晚安呀 阅读(2685) 评论(0) 推荐(0) 编辑
摘要: //前台 table.render({ url: core.path,//相对应的esb接口地址 elem: '#weidaopiaoInfo', contentType: 'application/json', datatype: 'json', request: { pageName: 'pag 阅读全文
posted @ 2021-05-28 14:26 是晚安呀 阅读(544) 评论(0) 推荐(0) 编辑
摘要: layui.use(['table', 'laydate', 'layer', 'form'], function () { var form = layui.form; form.render(); }) 阅读全文
posted @ 2021-05-28 14:14 是晚安呀 阅读(2189) 评论(0) 推荐(0) 编辑
摘要: //以文件上传为例,先说一下代码逻辑,有两个线程分别处理临时文件的获取,FTP文件上传,其中获取文件上传做了重复文件的判断。 public static readonly Queue<string> queue = new Queue<string>(); //临时文件队列,与文件队列互锁。 pub 阅读全文
posted @ 2021-05-28 14:10 是晚安呀 阅读(411) 评论(0) 推荐(0) 编辑
摘要: using System; using System.IO; using System.Net; using System.Threading; namespace FinanceCenter.Services.Tools { public class FtpHelper { public clas 阅读全文
posted @ 2021-05-28 14:03 是晚安呀 阅读(472) 评论(0) 推荐(0) 编辑
摘要: 前台: <!--上传文件弹窗--> <div class="layui-upload " style="display: none" id="UploadFilebody"> <button type="button" style="margin-top: 10px;margin-left: 10p 阅读全文
posted @ 2021-05-17 14:05 是晚安呀 阅读(617) 评论(0) 推荐(0) 编辑
摘要: public class StringToHex { //1.如何将十进制数的字符串转化成十六进制数的字符串 private void Write() { //十进制转二进制 Console.WriteLine("十进制166的二进制表示: " + Convert.ToString(166, 2)) 阅读全文
posted @ 2021-05-17 13:49 是晚安呀 阅读(1117) 评论(0) 推荐(0) 编辑
摘要: using (HashAlgorithm hash = HashAlgorithm.Create()) { using (FileStream file1 = new FileStream(文件路径, FileMode.Open)) { byte[] hashByte1 = hash.Compute 阅读全文
posted @ 2021-05-17 13:46 是晚安呀 阅读(1200) 评论(0) 推荐(0) 编辑
摘要: 参考:https://www.cnblogs.com/hblc/p/12331424.html 仓储(Respository)是存在于工作单元和数据库之间单独分离出来的一层,是对数据访问的封装。其优点: 1)业务层不需要知道它的具体实现,达到了分离关注点。 2)提高了对数据库访问的维护,对于仓储的改 阅读全文
posted @ 2021-05-14 10:27 是晚安呀 阅读(611) 评论(0) 推荐(0) 编辑
摘要: //分组 8个为一组 List<List<string>> ArrayList = sArray.Select((x, i) => new { Index = i, Value = x }) .GroupBy(x => x.Index / 8) .Select(x => x.Select(v => 阅读全文
posted @ 2021-05-14 09:15 是晚安呀 阅读(255) 评论(0) 推荐(0) 编辑