摘要:
一、业务功能描述 聚合聊天页面中,员工与粉丝聊天过程中,后端(定时器)需时刻判断该聊天是否快结束,或者已经结束,然后给粉丝发送即将结束或者结束的消息(链接 - 打开后是评价页面接口),然后粉丝进行评价 - 提交,后端记录评价数据。也可聚合聊天页手动发送评价链接。 sql: INSERT INTO s 阅读全文
摘要:
<el-dialog destroy-on-close v-model="insertVisible" title="知识库" width="70%" @close="closeVisible"> 阅读全文
摘要:
博客视频地址:https://www.bilibili.com/video/BV1HY41187T1/?vd_source=c670d1787bb249e7d6c91c05c3ad58a5笔记:https://www.yuque.com/imhelloworld/xhit9t/pt5l3x 文本开头 阅读全文
摘要:
参考:https://blog.csdn.net/kayotin/article/details/140929897 执行过的命令 nmcli命令查看当前网络连接信息,我们原先192.168.100.96查出来是em4的nmcli connection show修改指定连接的IP地址-刷新和生效su 阅读全文
摘要:
CREATE SEQUENCE auto_incrementew_clerk_customer_info_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; alter table "ew_clerk_custome 阅读全文
摘要:
超全mysql转换postgresql数据库方案 https://blog.csdn.net/weixin_42303757/article/details/128896250?spm=1001.2101.3001.6650.4&utm_medium=distribute.pc_relevant.n 阅读全文
摘要:
package cn.com.fl.service.utils; import cn.com.doone.tocloud.tools.MyLogUtil; import cn.com.doone.tocloud.tools.MyLogger; import java.text.ParseExcept 阅读全文
摘要:
关键词找日志:cat -n 1.log | grep 'keyword'来自 <https://blog.csdn.net/weixin_45285213/article/details/121518782> 指定时间找日志:到日志目录下sed -n '/2023-02-08 15:41/,/202 阅读全文
摘要:
<!-- 查询同级的如果有数据,就store_code+1返回,没有的话就找上一级的store_code拼接上1001返回--> <select id="getStoreCode" parameterType="java.util.Map" resultType="java.lang.String" 阅读全文
摘要:
select t2.id,t2.pid from( select @r as _id, (select @r := pid from tf_store_info where id = _id) as parent_id, @I := @I + 1 as lvl from (select @r :=1 阅读全文