Files
shgx_tz_mes_backend_sync/ZR.Model/System/Dto/SysConfigDto.cs

29 lines
845 B
C#
Raw Normal View History

2022-03-06 14:26:05 +08:00
namespace ZR.Model.System.Dto
2021-09-30 14:55:24 +08:00
{
/// <summary>
/// 参数配置输入对象模型
/// </summary>
public class SysConfigDto
{
public int ConfigId { get; set; }
public string ConfigName { get; set; }
public string ConfigKey { get; set; }
public string ConfigValue { get; set; }
public string ConfigType { get; set; }
2021-12-04 18:19:18 +08:00
public string Remark { get; set; }
2021-09-30 14:55:24 +08:00
}
/// <summary>
/// 参数配置查询对象模型
/// </summary>
2022-03-06 14:26:05 +08:00
public class SysConfigQueryDto : PagerInfo
2021-09-30 14:55:24 +08:00
{
public string ConfigName { get; set; }
public string ConfigKey { get; set; }
public string ConfigValue { get; set; }
public string ConfigType { get; set; }
public DateTime? BeginTime { get; set; }
public DateTime? EndTime { get; set; }
}
}