This commit is contained in:
kuku 2024-12-05 18:13:35 +08:00
parent e28f9c0394
commit b0f6f19193
2 changed files with 38 additions and 0 deletions

38
20241205 日报.md Normal file
View File

@ -0,0 +1,38 @@
# 2024/12/05 日报
### 做了什么
- 海康私有协议Core模块开发
- NewCore -- 创建业务核心
- LoadDeviceList --加载设备列表
- LoadChannelList --刷新通道列表
- CheckStatus --检查设备状态
- 测试功能是否正常使用
### 学到了什么
- go语言中的继承概念
```go
type Base struct{}
func (b *Base) BaseMethod() {
println("This is a base method")
}
type Derived struct {
Base
}
func main() {
d := Derived{}
d.BaseMethod()
}
```
- git的使用流程
- 每天先将代码拉到本地
- 然后在最新的dev分支上 建立个人分支
- 下班前必须提交代码