1 2 3 4 5 ··· 15 下一页
摘要: 参考 https://blog.csdn.net/jonnysun/article/details/144201359 创建工具类库 <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <TargetFramework>net8.0</TargetFr 阅读全文
posted @ 2025-04-21 19:58 我有我奥妙 阅读(49) 评论(0) 推荐(0)
摘要: 实体类 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 我有我奥妙 阅读(11) 评论(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 我有我奥妙 阅读(98) 评论(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 我有我奥妙 阅读(12) 评论(0) 推荐(0)
摘要: 文档 https://1x.antdv.com 文件上传 https://1x.antdv.com/components/upload-cn 阅读全文
posted @ 2025-04-14 22:26 我有我奥妙 阅读(3) 评论(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 我有我奥妙 阅读(3) 评论(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 我有我奥妙 阅读(11) 评论(0) 推荐(0)
摘要: https://wwwp.lanzout.com/b00zxnsg8f https://wwwp.lanzout.com/b00zxnsipe https://wwwp.lanzout.com/b00zxo0aji https://wwwp.lanzout.com/b00zxo4ube https: 阅读全文
posted @ 2025-04-07 22:44 我有我奥妙 阅读(57) 评论(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 我有我奥妙 阅读(22) 评论(0) 推荐(0)
摘要: 参考 https://www.cnblogs.com/cgy1995/p/18635828 阅读全文
posted @ 2025-04-05 23:17 我有我奥妙 阅读(16) 评论(0) 推荐(0)
1 2 3 4 5 ··· 15 下一页