zhaowei/20241224 日报.md
2024-12-24 18:08:16 +08:00

24 lines
977 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 2024/12/24 日报
### 做了什么
- **处理客户问题**
- **需要具体划分哪个通道给哪个员工**
- EasyNVR交流群客户我的世界叫你
- 这个有没有角色的概念,企业里的用户能否精细分配每个通道的实时预览和回放权限
- **海康设备用onvif协议带不出通道名**---EasyNVR交流群客户我的世界叫你
- 可以使用onvif device manager查看通道名称
- 或者使用抓包软件抓取读取的通道信息看是否一致
- **docker安装问题**
- 缺少配置文件 -- 重新下载docker安装包 重新安装
- **开发者鉴权EasyGBS**
- ~~在加入白名单之后会出现无法鉴权的情况产生~~
### 学了什么
- priority_queue<pair<int,int> , vector<pair<int,int>>,greater<>> pq;
- 第一个参数 是表示存储的是pair类型
- 第二个参数表示 底层用vector<pair<int,int>>存储
- 第三个表示从小到大的排序顺序