摘要: 1.windows server 开启hyper-v 安装centos7 mini https://blog.csdn.net/fengdong1996/article/details/95041109 2.安装gitlab https://blog.csdn.net/weixin_39381034 阅读全文
posted @ 2023-08-08 15:34 小爆脾气 阅读(221) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 聊天室实体 /// </summary> public class ChatDTO { /// <summary> /// 聊天室ID /// </summary> public Guid ChatID { get; set; } /// <summary> // 阅读全文
posted @ 2020-07-21 20:05 小爆脾气 阅读(102) 评论(0) 推荐(0) 编辑
摘要: /// /// 分解数据表 /// /// 需要分解的表 /// 每个表包含的数据量 /// public static List SplitDataTable(DataTable originalTab, int rowsNum) { //获取所需创建的... 阅读全文
posted @ 2019-03-14 15:43 小爆脾气 阅读(493) 评论(1) 推荐(0) 编辑
摘要: 前言 最近做的项目是监控方面的,需要对接各种摄像头,之前的方案是把各个厂家的SDK都集成到系统中,然后让用户进行切换,后来知道了Onvif (自行百度具体概念)这个东西。原来早就有人一统江湖了。 onvif 协议定义的部分wsdl文档 https://www.onvif.org/ver10/medi 阅读全文
posted @ 2017-09-20 15:43 小爆脾气 阅读(5420) 评论(2) 推荐(2) 编辑
摘要: 后台 阅读全文
posted @ 2017-04-18 16:31 小爆脾气 阅读(198) 评论(0) 推荐(0) 编辑
摘要: using Newtonsoft.Json.Linq; using Newtonsoft.Json; JObject json = (JObject)JsonConvert.DeserializeObject(json); JObject monitorinfo = (JObject)JsonCon 阅读全文
posted @ 2016-10-17 17:07 小爆脾气 阅读(129) 评论(0) 推荐(0) 编辑
摘要: <div class="ScrollBar" id="ItemsTree"></div> var cla = $("#ItemsTree_11 img").eq(0).attr("class"); if (cla.indexOf("plus") > 0) {//判断当前节点是否打开 $("#Item 阅读全文
posted @ 2016-07-11 16:46 小爆脾气 阅读(154) 评论(0) 推荐(0) 编辑
摘要: select id_credit, contract_no from (select * from welcome_share s where s.status = 0 and s.dial_num < 3 and s.owner = 'CE' and s.userid is null ... 阅读全文
posted @ 2016-06-29 16:53 小爆脾气 阅读(239) 评论(0) 推荐(0) 编辑
摘要: create or replace procedure prc_risk_control_sales_report(p_ReturnCode out varchar2) is error_info varchar2(4000); v_content clob; --一、客户质量报告 v_customer_quality_table1 clob; --表1 v_custome... 阅读全文
posted @ 2016-06-27 18:24 小爆脾气 阅读(182) 评论(0) 推荐(0) 编辑
摘要: private void button1_Click(object sender, EventArgs e) { MailMessage mm = new MailMessage(); //发件人 mm.From = new MailAddress("1111@qq.com", "测试"); ... 阅读全文
posted @ 2016-06-06 10:11 小爆脾气 阅读(129) 评论(0) 推荐(0) 编辑