DictionaryDetailDto.cs 347 B

12345678910111213141516
  1. using System;
  2. using Volo.Abp.Application.Dtos;
  3. namespace BaseService.BaseData.DataDictionaryManagement.Dto
  4. {
  5. public class DictionaryDetailDto : EntityDto<Guid>
  6. {
  7. public Guid Pid { get; set; }
  8. public string Label { get; set; }
  9. public string Value { get; set; }
  10. public short Sort { get; set; }
  11. }
  12. }