Browse Source

编译报错问题修复

pull/27/head
初十 4 years ago
parent
commit
37cbe91714
  1. 7
      aspnet-core/modules/DataDictionaryManagement/src/Lion.AbpPro.DataDictionaryManagement.Application.Contracts/DataDictionaries/Dtos/DeleteDataDictionaryDetailInput.cs
  2. 8
      aspnet-core/modules/DataDictionaryManagement/src/Lion.AbpPro.DataDictionaryManagement.Application.Contracts/DataDictionaries/Dtos/UpdateDetailInput.cs

7
aspnet-core/modules/DataDictionaryManagement/src/Lion.AbpPro.DataDictionaryManagement.Application.Contracts/DataDictionaries/Dtos/DeleteDataDictionaryDetailInput.cs

@ -1,10 +1,11 @@
using System;
namespace Lion.AbpPro.DataDictionaryManagement.DataDictionaries.Dtos;
public class DeleteDataDictionaryDetailInput
namespace Lion.AbpPro.DataDictionaryManagement.DataDictionaries.Dtos
{
public class DeleteDataDictionaryDetailInput
{
public Guid DataDictionaryId { get; set; }
public Guid DataDictionayDetailId { get; set; }
}
}

8
aspnet-core/modules/DataDictionaryManagement/src/Lion.AbpPro.DataDictionaryManagement.Application.Contracts/DataDictionaries/Dtos/UpdateDetailInput.cs

@ -1,10 +1,10 @@
using System;
using System.ComponentModel.DataAnnotations;
namespace Lion.AbpPro.DataDictionaryManagement.DataDictionaries.Dtos;
public class UpdateDetailInput
namespace Lion.AbpPro.DataDictionaryManagement.DataDictionaries.Dtos
{
public class UpdateDetailInput
{
[Required] public Guid DataDictionaryId { get; set; }
[Required] public Guid Id { get; set; }
@ -14,4 +14,6 @@ public class UpdateDetailInput
public string Description { get; set; }
public int Order { get; set; }
}
}

Loading…
Cancel
Save