12 2024 档案
摘要:1.Net8 + SqlServer的坑 问题描述: SSL出错,已成功与服务器建立连接,但是在登录过程中发生错误。 (provider: SSL 提供程序, error: 0 - 证书链是由不受信任的颁发机构颁发的) 解决方案: 数据库连接串增加:Encrypt=True;TrustServerC
阅读全文
摘要:用户表 SysUser 字段 字段含义 数据类型 默认值 可空 描述 Id 主键 Long × 主键Id Encode 编码 nvarchar(50) × 编码/工号 Account 账号 nvarchar(50) × 登录账号 Password 密码 nvarchar(50) × 登录密码 Rea
阅读全文
摘要:1.清除npm缓存 npm cache clean -force 2.重新安装依赖 npm i xxx -g 3.更换镜像 npm confg set registry https://mirrors.huaweicloud.com/repository/npm/ --华为镜像 npm config
阅读全文
摘要:公共实体基类 /// <summary> /// 实体基类 /// </summary> public class BaseEntity<TKey> : IEntity<TKey>, ICreatedAudit, IUpdatedAudit, IDeletedAudit { /// <summary
阅读全文