摘要: using Prism.Mvvm;using System;using System.Collections.Generic;using System.Linq; namespace Analwpf.ViewModels{ using Analwpf.Common.Models; using Ana 阅读全文
posted @ 2023-11-30 09:09 天明宝 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 建立一个智能诊断知识库需要涵盖多个领域的知识: 包括专业知识(医学、工程学、计算机科学等),数据科学和人工智能技术。以下是一些具体的步骤: 1. **定义问题**:首先,你需要确定知识库将用于哪些类型的诊断。这可能是医疗诊断,机械故障诊断,软件错误诊断,等等。 2. **数据收集**:收集和你的主题 阅读全文
posted @ 2023-07-10 10:22 天明宝 阅读(58) 评论(0) 推荐(0) 编辑
摘要: SELECT sum( CASE WHEN time BETWEEN '2021-07-15 00:00:00' AND '2021-07-15 00:30:00' THEN 1 ELSE 0 END ) AS '1', sum( CASE WHEN time BETWEEN '2021-07-15 阅读全文
posted @ 2023-06-13 09:18 天明宝 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 文档中{普通文字}{%图片}{%%居中图片} <template> <el-date-picker v-model="value" class="timePicker" type="day" placeholder="" format="YYYY-MM-DD " value-format="YYYY 阅读全文
posted @ 2023-06-08 14:46 天明宝 阅读(40) 评论(0) 推荐(0) 编辑
摘要: retained:true or false? 1.当消息发布到MQTT服务器时,我们需要保留最新的消息到服务器上,以免订阅时丢失上一次最新的消息; 当订阅消费端服务器重新连接MQTT服务器时,总能拿到该主题最新消息, 这个时候我们需要把retained设置为true; 2.当消息发布到MQ服务器时 阅读全文
posted @ 2022-04-18 09:49 天明宝 阅读(83) 评论(0) 推荐(0) 编辑
摘要: 1、环境 MQTTnet(3.1.2)、net6.0 Client · dotnet/MQTTnet Wiki · GitHub 2、Form1.cs using MQTTnet; using MQTTnet.Client; using MQTTnet.Client.Connecting; usin 阅读全文
posted @ 2022-04-13 09:33 天明宝 阅读(3727) 评论(0) 推荐(0) 编辑
摘要: 在vue中的created函数中,定义window.函数名=this.函数名。 created:function(){ window.clicktower=this.clicktower; }, methods: { clicktower:function(index){ ** } } 阅读全文
posted @ 2021-11-02 10:05 天明宝 阅读(351) 评论(0) 推荐(0) 编辑
摘要: <div id="demo"> <div @mouseover="mouseOver" @mouseleave="mouseLeave" :style="active">悬停两秒后改变颜色</div> </div> <script> var demo=new Vue({ el:'#demo', da 阅读全文
posted @ 2021-10-27 09:49 天明宝 阅读(393) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Net;using System.Net.Sockets;using System.Text;using System.Threading.Tas 阅读全文
posted @ 2021-08-26 10:43 天明宝 阅读(1051) 评论(0) 推荐(0) 编辑
摘要: function requestFullscreen(element) { if(element.requstFullscreen) {//w3c element.requstFullscreen(); } else if(element.mozRequestFullScreen) {//firef 阅读全文
posted @ 2020-11-26 11:09 天明宝 阅读(520) 评论(0) 推荐(0) 编辑