mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-05 01:00:51 +08:00
12 lines
334 B
C#
12 lines
334 B
C#
using Yi.Framework.Infrastructure.Ddd.Dtos;
|
|
|
|
namespace Yi.Framework.Module.DictionaryManager.Dtos.Dictionary
|
|
{
|
|
public class DictionaryGetListInputVo : PagedAndSortedResultRequestDto
|
|
{
|
|
public string? DictType { get; set; }
|
|
public string? DictLabel { get; set; }
|
|
public bool? State { get; set; }
|
|
}
|
|
}
|