Skip to content

Commit

Permalink
chore:12月7日
Browse files Browse the repository at this point in the history
  • Loading branch information
aehyok committed Dec 7, 2023
1 parent 96c80cd commit f94a2c6
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
11 changes: 11 additions & 0 deletions docs/daily/2023-12.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## 12月7日
- vs2022设置新增class的修饰符 internal 为public
- C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\ItemTemplates\CSharp\Code\2052\Class
- https://blog.csdn.net/yan_yu_lv_ji/article/details/132676464
## 12月6日
- 蒲公英app测试 https://www.pgyer.com
- pc 微信扫码登录
- 微信开放平台 https://developers.weixin.qq.com/doc/oplatform/Website_App/WeChat_Login/Authorized_Interface_Calling_UnionID.html
- java 扫码登录https://blog.csdn.net/qq_63358859/article/details/131826717
## 12月5日
- .net
## 12月4日
- .net 文档
- https://learn.microsoft.com/zh-cn/dotnet/api/?view=net-8.0
29 changes: 29 additions & 0 deletions docs/javascript/2023-11-21-dotnetcore.md
Original file line number Diff line number Diff line change
Expand Up @@ -305,12 +305,41 @@ eventPublisher.Publish(new VillageMessageChangedEvent()
// 推送成功后,将推送状态设置为(已推送)
// 如果中间出现异常,则将推送状态设置为(推送失败)
```

## 定义微信消息

- MessageDefine 消息定义表数据

```
{
"Code": "emergency_response_message",
"Name": "应急发布消息",
"RedirectUri": "package/szxc/pages/emergency-release/detail/msg?id={MessageId}",
"Fields": {
"MessageId": "消息Id",
"Title": "标题",
"PublishDate": "发布时间"
}
},
```

- 模板表中类型Template ContentType
```
/// <summary>
/// 模板内容类型
/// </summary>
public enum TemplateContentType
{
文本 = 0, // 短信模板
文件 = 1, // 导出和导入模板
小程序消息模板 = 2,
公众号消息模板 = 3,
}
```

## rabbitmq在项目中的使用
```
// 整体官方文档使用介绍
Expand Down

0 comments on commit f94a2c6

Please sign in to comment.