using DataCheck;
using System.Text.Json.Serialization;
namespace WcsMain.ApiServe.Dto.WcsDto.Config;
public class EditeConfigRequest
{
///
/// 配置键
///
[DataRules]
[JsonPropertyName("configKey")]
public string? ConfigKey { get; set; }
///
/// 配置名称
///
[JsonPropertyName("configName")]
public string? ConfigName { get; set; }
///
/// 配置值
///
[JsonPropertyName("configValue")]
public string? ConfigValue { get; set; }
///
/// 配置类型
///
[JsonPropertyName("configType")]
public string? ConfigType { get; set; }
///
/// 备注信息
///
[JsonPropertyName("remark")]
public string? Remark { get; set; }
///
/// 是否是编辑模式,、
///
///
/// 编辑模式表示更新数据,
///
[JsonPropertyName("isEdite")]
public bool IsEdite { get; set; }
}