1 2 3 4 5 ··· 14 下一页
摘要: 参考 https://blog.csdn.net/jonnysun/article/details/144201359 创建工具类库 <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <TargetFramework>net8.0</TargetFr 阅读全文
posted @ 2025-04-21 19:58 我有我奥妙 阅读(146) 评论(0) 推荐(1)
摘要: 实体类 public class UserScore { public string Name { get; set; } public double TotalScore { get; set; } public int Ranking { get; set; } public int ThanU 阅读全文
posted @ 2025-04-20 22:16 我有我奥妙 阅读(25) 评论(0) 推荐(0)
摘要: 添加引用 <ItemGroup> <PackageReference Include="Quartz.AspNetCore" Version="3.14.0" /> <PackageReference Include="NLog" Version="5.4.0" /> <PackageReferen 阅读全文
posted @ 2025-04-20 21:45 我有我奥妙 阅读(263) 评论(0) 推荐(0)
摘要: 问题描述 .Net8 由于新版本 使用 <Nullable>enable</Nullable> 构建 对于这样的字段也是必填 public string Name{get;set;} 处理办法: 1、写为 public string? Name{get;set;} 2、项目属性中禁用null值校验 阅读全文
posted @ 2025-04-15 22:58 我有我奥妙 阅读(56) 评论(0) 推荐(0)
摘要: 文档 https://1x.antdv.com 文件上传 https://1x.antdv.com/components/upload-cn 阅读全文
posted @ 2025-04-14 22:26 我有我奥妙 阅读(8) 评论(0) 推荐(0)
摘要: 科室类 public class Dept { public string Id { get; set; } public string Name { get; set; } public string ParentId { get; set; } public string RootId { ge 阅读全文
posted @ 2025-04-13 23:58 我有我奥妙 阅读(13) 评论(0) 推荐(0)
摘要: 示例代码 public enum TypeEnum { [Text("进行中")] Doing = 1, [Text("完成")] Done = 2, [Text("已被删除")] Deleted = 9, } public class TextAttribute : Attribute { pub 阅读全文
posted @ 2025-04-13 16:04 我有我奥妙 阅读(71) 评论(0) 推荐(0)
摘要: 格式 tooltip: { trigger: 'item', formatter: function(params, ticketmcallback) { var res = "价格:" + params.data.value + "<br/>名称:" + params.data.ProName r 阅读全文
posted @ 2025-04-05 23:19 我有我奥妙 阅读(50) 评论(0) 推荐(0)
摘要: 参考 https://www.cnblogs.com/cgy1995/p/18635828 阅读全文
posted @ 2025-04-05 23:17 我有我奥妙 阅读(23) 评论(0) 推荐(0)
摘要: 前提 正常安装Nginx 修改配置 events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; sendfile on; keepalive_timeout 阅读全文
posted @ 2025-04-05 23:15 我有我奥妙 阅读(27) 评论(0) 推荐(0)
1 2 3 4 5 ··· 14 下一页