升级到net6.0

This commit is contained in:
不做码农
2022-03-06 14:26:05 +08:00
parent 013b6ea4db
commit 7fe07b104c
50 changed files with 306 additions and 495 deletions

View File

@@ -1,6 +1,6 @@
using System;
namespace ZR.Model.Dto
namespace ZR.Model.System.Dto
{
/// <summary>
/// 参数配置输入对象模型
@@ -18,7 +18,7 @@ namespace ZR.Model.Dto
/// <summary>
/// 参数配置查询对象模型
/// </summary>
public class SysConfigQueryDto: PagerInfo
public class SysConfigQueryDto : PagerInfo
{
public string ConfigName { get; set; }
public string ConfigKey { get; set; }

View File

@@ -2,10 +2,9 @@ using System;
using System.Collections.Generic;
using System.Runtime.Serialization;
using Newtonsoft.Json;
using ZR.Model.Dto;
using ZR.Model.Models;
namespace ZR.Model.Dto
namespace ZR.Model.System.Dto
{
/// <summary>
/// 通知公告表输入对象
@@ -23,7 +22,7 @@ namespace ZR.Model.Dto
/// <summary>
/// 通知公告表查询对象
/// </summary>
public class SysNoticeQueryDto : PagerInfo
public class SysNoticeQueryDto : PagerInfo
{
public string NoticeTitle { get; set; }
public string NoticeType { get; set; }