18 lines
378 B
C#
18 lines
378 B
C#
|
|
namespace YY.Admin.Services.Service;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 数据字典分页查询参数
|
||
|
|
/// </summary>
|
||
|
|
public class PageJeecgDictItemInput : PagedRequestBase
|
||
|
|
{
|
||
|
|
public string? DictCode { get; set; }
|
||
|
|
|
||
|
|
public string? DictName { get; set; }
|
||
|
|
|
||
|
|
public string? ItemText { get; set; }
|
||
|
|
|
||
|
|
public string? ItemValue { get; set; }
|
||
|
|
|
||
|
|
public StatusEnum? Status { get; set; }
|
||
|
|
}
|