2025-12-17 11:12:13 +08:00
|
|
|
|
namespace YD_Event.Application.Config.Dtos;
|
2025-12-17 10:32:52 +08:00
|
|
|
|
|
|
|
|
|
|
public class CustomConfigQueryInput : Pagination
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 配置名称
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 配置唯一编码
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string Code { get; set; }
|
|
|
|
|
|
}
|